Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Games
Knights
Commits
972a7e76
Commit
972a7e76
authored
Jan 05, 2021
by
Laurent Montel
😁
Browse files
Remove not implemented method or unused signal
parent
e9059196
Changes
5
Hide whitespace changes
Inline
Side-by-side
src/board.h
View file @
972a7e76
...
...
@@ -104,7 +104,6 @@ private:
QPointF
mapToScene
(
Pos
);
void
centerOnPos
(
Item
*
item
,
const
Pos
&
pos
,
bool
animated
=
true
);
void
centerOnPos
(
Item
*
item
,
bool
animated
=
true
);
void
removeFrame
();
void
centerAndResize
(
Item
*
item
,
QSize
size
,
bool
animated
=
true
);
PieceType
getPromotedType
();
...
...
src/core/move.h
View file @
972a7e76
...
...
@@ -111,7 +111,6 @@ public:
Notation
notation
()
const
;
bool
operator
==
(
Move
other
)
const
;
void
toCoordinateNotation
(
Grid
);
void
setTime
(
const
QTime
&
);
QTime
time
();
...
...
src/knightsview.h
View file @
972a7e76
...
...
@@ -78,8 +78,6 @@ Q_SIGNALS:
void
displayedPlayerChanged
(
Color
);
void
popupAccepted
();
void
popupRejected
();
};
}
...
...
src/proto/ficsdialog.h
View file @
972a7e76
...
...
@@ -39,7 +39,6 @@ public:
explicit
FicsDialog
(
QWidget
*
parent
=
nullptr
,
Qt
::
WindowFlags
f
=
{}
);
~
FicsDialog
()
override
;
int
acceptedGameId
();
QString
userName
();
QString
password
();
bool
remember
();
...
...
@@ -72,7 +71,6 @@ public Q_SLOTS:
Q_SIGNALS:
void
login
(
const
QString
&
username
,
const
QString
&
password
);
void
createAccount
();
void
seekingChanged
(
bool
seek
);
void
declineButtonNeeded
(
bool
needed
);
...
...
src/proto/protocol.h
View file @
972a7e76
...
...
@@ -145,14 +145,11 @@ Q_SIGNALS:
void
illegalMove
();
void
gameOver
(
Color
winner
);
void
errorStringChanged
(
const
QString
&
errorString
);
void
errorCodeChanged
(
const
ErrorCode
&
error
);
void
initSuccesful
();
void
error
(
const
Protocol
::
ErrorCode
&
errorCode
,
const
QString
&
errorString
=
QString
()
);
void
timeChanged
(
const
QTime
&
time
);
void
timeLimitChanged
(
const
QTime
&
time
);
void
undoPossible
(
bool
possible
);
void
redoPossible
(
bool
possible
);
...
...
Write
Preview
Supports
Markdown
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