Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
JuK
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Multimedia
JuK
Commits
bf57c01a
Commit
bf57c01a
authored
Feb 26, 2006
by
Scott Wheeler
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kdDebug() -> kDebug()
svn path=/trunk/KDE/kdemultimedia/juk/; revision=513898
parent
20bbe4a2
Changes
11
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
24 additions
and
24 deletions
+24
-24
coverinfo.cpp
coverinfo.cpp
+1
-1
covermanager.cpp
covermanager.cpp
+1
-1
filehandle.cpp
filehandle.cpp
+1
-1
filerenamer.cpp
filerenamer.cpp
+2
-2
googlefetcher.cpp
googlefetcher.cpp
+1
-1
k3bexporter.cpp
k3bexporter.cpp
+1
-1
ktrm.cpp
ktrm.cpp
+11
-11
mediafiles.cpp
mediafiles.cpp
+1
-1
playlist.cpp
playlist.cpp
+3
-3
playlistbox.cpp
playlistbox.cpp
+1
-1
tracksequenceiterator.cpp
tracksequenceiterator.cpp
+1
-1
No files found.
coverinfo.cpp
View file @
bf57c01a
...
...
@@ -176,7 +176,7 @@ void CoverInfo::applyCoverToWholeAlbum(bool overwriteExistingCovers) const
if
(
!
overwriteExistingCovers
&&
!
(
*
it
)
->
file
().
coverInfo
()
->
m_needsConverting
)
continue
;
k
d
Debug
(
65432
)
<<
"Setting cover for: "
<<
*
it
<<
endl
;
kDebug
(
65432
)
<<
"Setting cover for: "
<<
*
it
<<
endl
;
(
*
it
)
->
file
().
coverInfo
()
->
setCoverId
(
m_coverKey
);
}
}
...
...
covermanager.cpp
View file @
bf57c01a
...
...
@@ -514,7 +514,7 @@ void CoverManager::setIdForTrack(const QString &path, coverKey id)
data
()
->
tracks
.
remove
(
path
);
if
(
data
()
->
covers
[
*
oldId
]
->
refCount
==
0
)
{
k
d
Debug
(
65432
)
<<
"Cover "
<<
*
oldId
<<
" is unused, removing.
\n
"
;
kDebug
(
65432
)
<<
"Cover "
<<
*
oldId
<<
" is unused, removing.
\n
"
;
removeCover
(
*
oldId
);
}
}
...
...
filehandle.cpp
View file @
bf57c01a
...
...
@@ -100,7 +100,7 @@ FileHandle::FileHandle(const FileHandle &f) :
d
(
f
.
d
)
{
if
(
!
d
)
{
k
d
Debug
(
65432
)
<<
"The source FileHandle was not initialized."
<<
endl
;
kDebug
(
65432
)
<<
"The source FileHandle was not initialized."
<<
endl
;
d
=
null
().
d
;
}
d
->
ref
();
...
...
filerenamer.cpp
View file @
bf57c01a
...
...
@@ -892,7 +892,7 @@ void FileRenamer::rename(const PlaylistItemList &items)
bool
FileRenamer
::
moveFile
(
const
QString
&
src
,
const
QString
&
dest
)
{
k
d
Debug
(
65432
)
<<
"Moving file "
<<
src
<<
" to "
<<
dest
<<
endl
;
kDebug
(
65432
)
<<
"Moving file "
<<
src
<<
" to "
<<
dest
<<
endl
;
if
(
src
==
dest
)
return
false
;
...
...
@@ -943,7 +943,7 @@ void FileRenamer::setFolderIcon(const KURL &dst, const PlaylistItem *item)
for
(
QStringList
::
ConstIterator
it
=
elements
.
begin
();
it
!=
elements
.
end
();
++
it
)
{
path
.
append
(
"/"
+
(
*
it
));
k
d
Debug
()
<<
"Checking path: "
<<
path
<<
endl
;
kDebug
()
<<
"Checking path: "
<<
path
<<
endl
;
if
((
*
it
).
find
(
item
->
file
().
tag
()
->
album
())
!=
-
1
&&
!
QFile
::
exists
(
path
+
"/.directory"
))
{
...
...
googlefetcher.cpp
View file @
bf57c01a
...
...
@@ -100,7 +100,7 @@ void GoogleFetcher::slotLoadImageURLs(GoogleFetcher::ImageSize size)
DOM
::
HTMLDocument
search
=
part
.
htmlDocument
();
search
.
setAsync
(
false
);
// Grab the document before proceeding.
k
d
Debug
(
65432
)
<<
"Performing Google Search: "
<<
url
<<
endl
;
kDebug
(
65432
)
<<
"Performing Google Search: "
<<
url
<<
endl
;
search
.
load
(
url
.
url
());
...
...
k3bexporter.cpp
View file @
bf57c01a
...
...
@@ -75,7 +75,7 @@ class PlaylistAction : public KAction
protected
slots
:
void
slotActivated
()
{
k
d
Debug
(
65432
)
<<
k_funcinfo
<<
endl
;
kDebug
(
65432
)
<<
k_funcinfo
<<
endl
;
// Determine current playlist, and call its slot.
Playlist
*
p
=
PlaylistCollection
::
instance
()
->
visiblePlaylist
();
...
...
ktrm.cpp
View file @
bf57c01a
...
...
@@ -181,7 +181,7 @@ protected:
KURL
proxy
=
KProtocolManager
::
proxyFor
(
"http"
);
QString
proxyHost
=
proxy
.
host
();
k
d
Debug
(
65432
)
<<
"Using proxy server "
<<
proxyHost
<<
" for www.musicbrainz.org.
\n
"
;
kDebug
(
65432
)
<<
"Using proxy server "
<<
proxyHost
<<
" for www.musicbrainz.org.
\n
"
;
tp_SetProxy
(
m_pimp
,
proxyHost
.
latin1
(),
short
(
proxy
.
port
()));
}
}
...
...
@@ -463,7 +463,7 @@ int KTRMLookup::fileId() const
void
KTRMLookup
::
recognized
()
{
k
d
Debug
()
<<
k_funcinfo
<<
d
->
file
<<
endl
;
kDebug
()
<<
k_funcinfo
<<
d
->
file
<<
endl
;
d
->
results
.
clear
();
...
...
@@ -489,7 +489,7 @@ void KTRMLookup::recognized()
void
KTRMLookup
::
unrecognized
()
{
k
d
Debug
()
<<
k_funcinfo
<<
d
->
file
<<
endl
;
kDebug
()
<<
k_funcinfo
<<
d
->
file
<<
endl
;
#if HAVE_MUSICBRAINZ >= 4
char
trm
[
255
];
bool
finish
=
false
;
...
...
@@ -514,12 +514,12 @@ void KTRMLookup::unrecognized()
void
KTRMLookup
::
collision
()
{
k
d
Debug
()
<<
k_funcinfo
<<
d
->
file
<<
endl
;
kDebug
()
<<
k_funcinfo
<<
d
->
file
<<
endl
;
track_t
track
=
tp_GetTrack
(
KTRMRequestHandler
::
instance
()
->
tunePimp
(),
d
->
fileId
);
if
(
track
<=
0
)
{
k
d
Debug
()
<<
"invalid track number"
<<
endl
;
kDebug
()
<<
"invalid track number"
<<
endl
;
return
;
}
...
...
@@ -533,17 +533,17 @@ void KTRMLookup::collision()
switch
(
type
)
{
case
eNone
:
k
d
Debug
()
<<
k_funcinfo
<<
"eNone"
<<
endl
;
kDebug
()
<<
k_funcinfo
<<
"eNone"
<<
endl
;
break
;
case
eArtistList
:
k
d
Debug
()
<<
"eArtistList"
<<
endl
;
kDebug
()
<<
"eArtistList"
<<
endl
;
break
;
case
eAlbumList
:
k
d
Debug
()
<<
"eAlbumList"
<<
endl
;
kDebug
()
<<
"eAlbumList"
<<
endl
;
break
;
case
eTrackList
:
{
k
d
Debug
()
<<
"eTrackList"
<<
endl
;
kDebug
()
<<
"eTrackList"
<<
endl
;
albumtrackresult_t
**
tracks
=
(
albumtrackresult_t
**
)
results
;
d
->
results
.
clear
();
...
...
@@ -568,7 +568,7 @@ void KTRMLookup::collision()
break
;
}
case
eMatchedTrack
:
k
d
Debug
()
<<
k_funcinfo
<<
"eMatchedTrack"
<<
endl
;
kDebug
()
<<
k_funcinfo
<<
"eMatchedTrack"
<<
endl
;
break
;
}
...
...
@@ -582,7 +582,7 @@ void KTRMLookup::collision()
void
KTRMLookup
::
error
()
{
k
d
Debug
()
<<
k_funcinfo
<<
d
->
file
<<
endl
;
kDebug
()
<<
k_funcinfo
<<
d
->
file
<<
endl
;
d
->
results
.
clear
();
finished
();
...
...
mediafiles.cpp
View file @
bf57c01a
...
...
@@ -149,7 +149,7 @@ QStringList MediaFiles::convertURLsToLocal(const QStringList &urlList, QWidget *
localUrl
=
KIO
::
NetAccess
::
mostLocalURL
(
KURL
::
fromPathOrURL
(
*
it
),
w
);
if
(
!
localUrl
.
isLocalFile
())
k
d
Debug
(
65432
)
<<
localUrl
<<
" is not a local file, skipping.
\n
"
;
kDebug
(
65432
)
<<
localUrl
<<
" is not a local file, skipping.
\n
"
;
else
result
.
append
(
localUrl
.
path
());
}
...
...
playlist.cpp
View file @
bf57c01a
...
...
@@ -764,7 +764,7 @@ void Playlist::slotRefresh()
(
*
it
)
->
refreshFromDisk
();
if
(
!
(
*
it
)
->
file
().
tag
()
||
!
(
*
it
)
->
file
().
fileInfo
().
exists
())
{
k
d
Debug
(
65432
)
<<
"Error while trying to refresh the tag. "
kDebug
(
65432
)
<<
"Error while trying to refresh the tag. "
<<
"This file has probably been removed."
<<
endl
;
delete
(
*
it
)
->
collectionItem
();
...
...
@@ -1782,7 +1782,7 @@ void Playlist::calculateColumnWeights()
for
(
columnIt
=
m_weightDirty
.
begin
();
columnIt
!=
m_weightDirty
.
end
();
++
columnIt
)
{
m_columnWeights
[
*
columnIt
]
=
int
(
sqrt
(
averageWidth
[
*
columnIt
])
+
0.5
);
// k
d
Debug(65432) << k_funcinfo << "m_columnWeights[" << *columnIt << "] == "
// kDebug(65432) << k_funcinfo << "m_columnWeights[" << *columnIt << "] == "
// << m_columnWeights[*columnIt] << endl;
}
...
...
@@ -2140,7 +2140,7 @@ void Playlist::slotShowRMBMenu(Q3ListViewItem *item, const QPoint &point, int co
void
Playlist
::
slotRenameTag
()
{
// k
d
Debug(65432) << "Playlist::slotRenameTag()" << endl;
// kDebug(65432) << "Playlist::slotRenameTag()" << endl;
// setup completions and validators
...
...
playlistbox.cpp
View file @
bf57c01a
...
...
@@ -370,7 +370,7 @@ void PlaylistBox::setDynamicListsFrozen(bool frozen)
void
PlaylistBox
::
slotSavePlaylists
()
{
k
d
Debug
(
65432
)
<<
"Auto-saving playlists and covers.
\n
"
;
kDebug
(
65432
)
<<
"Auto-saving playlists and covers.
\n
"
;
PlaylistList
l
;
CollectionList
*
collection
=
CollectionList
::
instance
();
...
...
tracksequenceiterator.cpp
View file @
bf57c01a
...
...
@@ -292,7 +292,7 @@ void DefaultSequenceIterator::initAlbumSearch(PlaylistItem *searchItem)
// search.
if
(
!
searchItem
->
file
().
tag
()
->
artist
().
isEmpty
())
{
k
d
Debug
(
65432
)
<<
"Searching both artist and album.
\n
"
;
kDebug
(
65432
)
<<
"Searching both artist and album.
\n
"
;
columns
[
0
]
=
PlaylistItem
::
ArtistColumn
;
m_albumSearch
.
addComponent
(
PlaylistSearch
::
Component
(
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment