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
20bbe4a2
Commit
20bbe4a2
authored
Feb 26, 2006
by
Scott Wheeler
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Whee. Another class down.
svn path=/trunk/KDE/kdemultimedia/juk/; revision=513896
parent
ab6ff108
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
3 deletions
+4
-3
coverdialog.cpp
coverdialog.cpp
+2
-2
covericonview.h
covericonview.h
+2
-1
No files found.
coverdialog.cpp
View file @
20bbe4a2
...
...
@@ -50,12 +50,12 @@ public:
class
CaseInsensitiveItem
:
public
KListViewItem
{
public:
CaseInsensitiveItem
(
QListView
*
parent
,
const
QString
&
text
)
:
CaseInsensitiveItem
(
Q
3
ListView
*
parent
,
const
QString
&
text
)
:
KListViewItem
(
parent
,
text
)
{
}
int
compare
(
QListViewItem
*
item
,
int
column
,
bool
ascending
)
const
int
compare
(
Q
3
ListViewItem
*
item
,
int
column
,
bool
ascending
)
const
{
Q_UNUSED
(
ascending
);
return
text
(
column
).
lower
().
localeAwareCompare
(
item
->
text
(
column
).
lower
());
...
...
covericonview.h
View file @
20bbe4a2
...
...
@@ -24,6 +24,7 @@
// don't like the idea of naming it "CoverIVI" or something, so just namespace
// it out. I would merge them except for googlefetcher's dependence on KIO
// and such.
namespace
CoverUtility
{
class
CoverIconViewItem
:
public
KIconViewItem
...
...
@@ -49,7 +50,7 @@ using CoverUtility::CoverIconViewItem;
class
CoverIconView
:
public
KIconView
{
public:
CoverIconView
(
QWidget
*
parent
,
const
char
*
name
);
CoverIconView
(
QWidget
*
parent
,
const
char
*
name
=
0
);
CoverIconViewItem
*
currentItem
()
const
;
...
...
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