Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
Games
KReversi
Commits
d959156b
Commit
d959156b
authored
Dec 11, 2019
by
Yuri Chornoivan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix minor EBN issues
parent
fe81b17d
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
8 additions
and
8 deletions
+8
-8
kexthighscore_gui.h
kexthighscore_gui.h
+1
-1
kexthighscore_internal.h
kexthighscore_internal.h
+1
-1
kexthighscore_item.cpp
kexthighscore_item.cpp
+1
-1
kexthighscore_item.h
kexthighscore_item.h
+2
-2
kexthighscore_tab.h
kexthighscore_tab.h
+3
-3
No files found.
kexthighscore_gui.h
View file @
d959156b
...
...
@@ -56,7 +56,7 @@ class ScoresList : public QTreeWidget
{
Q_OBJECT
public:
ScoresList
(
QWidget
*
parent
);
explicit
ScoresList
(
QWidget
*
parent
);
void
addHeader
(
const
ItemArray
&
);
...
...
kexthighscore_internal.h
View file @
d959156b
...
...
@@ -180,7 +180,7 @@ class ScoreInfos : public ItemArray
class
ConfigGroup
:
public
KConfigGroup
{
public:
ConfigGroup
(
const
QString
&
group
=
QLatin1String
(
""
))
explicit
ConfigGroup
(
const
QString
&
group
=
QLatin1String
(
""
))
:
KConfigGroup
(
KSharedConfig
::
openConfig
(),
group
)
{}
};
...
...
kexthighscore_item.cpp
View file @
d959156b
...
...
@@ -173,7 +173,7 @@ bool Score::isTheWorst() const
return
score
()
==
s
.
score
();
}
bool
Score
::
operator
<
(
const
Score
&
score
)
bool
Score
::
operator
<
(
const
Score
&
score
)
const
{
return
internal
->
manager
.
isStrictlyLess
(
*
this
,
score
);
}
...
...
kexthighscore_item.h
View file @
d959156b
...
...
@@ -178,7 +178,7 @@ class Score;
class
Score
{
public:
Score
(
ScoreType
type
=
Won
);
explicit
Score
(
ScoreType
type
=
Won
);
~
Score
();
...
...
@@ -229,7 +229,7 @@ class Score
*
* @see Manager::isStrictlyLess
*/
bool
operator
<
(
const
Score
&
score
);
bool
operator
<
(
const
Score
&
score
)
const
;
private:
ScoreType
_type
;
...
...
kexthighscore_tab.h
View file @
d959156b
...
...
@@ -35,7 +35,7 @@ class PlayersCombo : public QComboBox
{
Q_OBJECT
public:
PlayersCombo
(
QWidget
*
parent
=
nullptr
);
explicit
PlayersCombo
(
QWidget
*
parent
=
nullptr
);
void
load
();
...
...
@@ -53,7 +53,7 @@ class AdditionalTab : public QWidget
{
Q_OBJECT
public:
AdditionalTab
(
QWidget
*
parent
);
explicit
AdditionalTab
(
QWidget
*
parent
);
virtual
void
load
();
...
...
@@ -100,7 +100,7 @@ class HistogramTab : public AdditionalTab
{
Q_OBJECT
public:
HistogramTab
(
QWidget
*
parent
);
explicit
HistogramTab
(
QWidget
*
parent
);
void
load
()
override
;
...
...
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