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
PIM
KNotes
Commits
7d31abff
Commit
7d31abff
authored
Jan 08, 2021
by
Laurent Montel
Browse files
Add missing override
parent
f7021747
Pipeline
#46785
passed with stage
in 13 minutes and 45 seconds
Changes
30
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
noteshared/src/akonadi/notesakonaditreemodel.h
View file @
7d31abff
...
...
@@ -19,7 +19,7 @@ class NOTESHARED_EXPORT NotesAkonadiTreeModel : public Akonadi::EntityTreeModel
Q_OBJECT
public:
explicit
NotesAkonadiTreeModel
(
Akonadi
::
ChangeRecorder
*
changeRecorder
,
QObject
*
parent
=
nullptr
);
~
NotesAkonadiTreeModel
();
~
NotesAkonadiTreeModel
()
override
;
};
}
...
...
noteshared/src/akonadi/noteschangerecorder.h
View file @
7d31abff
...
...
@@ -18,7 +18,7 @@ class NOTESHARED_EXPORT NotesChangeRecorder : public QObject
Q_OBJECT
public:
explicit
NotesChangeRecorder
(
QObject
*
parent
=
nullptr
);
~
NotesChangeRecorder
();
~
NotesChangeRecorder
()
override
;
Akonadi
::
ChangeRecorder
*
changeRecorder
()
const
;
...
...
noteshared/src/alarms/notealarmdialog.h
View file @
7d31abff
...
...
@@ -20,7 +20,7 @@ class NOTESHARED_EXPORT NoteAlarmDialog : public QDialog
Q_OBJECT
public:
explicit
NoteAlarmDialog
(
const
QString
&
caption
,
QWidget
*
parent
=
nullptr
);
~
NoteAlarmDialog
();
~
NoteAlarmDialog
()
override
;
void
setAlarm
(
const
QDateTime
&
dateTime
);
Q_REQUIRED_RESULT
QDateTime
alarm
()
const
;
...
...
noteshared/src/config/notenetworkconfig.h
View file @
7d31abff
...
...
@@ -14,7 +14,7 @@ class NOTESHARED_EXPORT NoteNetworkConfigWidget : public QWidget
Q_OBJECT
public:
explicit
NoteNetworkConfigWidget
(
QWidget
*
parent
=
nullptr
);
~
NoteNetworkConfigWidget
();
~
NoteNetworkConfigWidget
()
override
;
void
save
();
void
load
();
...
...
noteshared/src/dialog/selectednotefolderdialog.h
View file @
7d31abff
...
...
@@ -14,7 +14,7 @@ class SelectedNotefolderDialog : public Akonadi::CollectionDialog
Q_OBJECT
public:
explicit
SelectedNotefolderDialog
(
QWidget
*
parent
=
nullptr
);
~
SelectedNotefolderDialog
();
~
SelectedNotefolderDialog
()
override
;
private:
void
readConfig
();
...
...
noteshared/src/editor/noteeditor.h
View file @
7d31abff
...
...
@@ -14,7 +14,7 @@ class NoteEditor : public KPIMTextEdit::RichTextEditorWidget
Q_OBJECT
public:
explicit
NoteEditor
(
QWidget
*
parent
);
~
NoteEditor
();
~
NoteEditor
()
override
;
};
}
...
...
noteshared/src/job/createnewnotejob.h
View file @
7d31abff
...
...
@@ -18,7 +18,7 @@ class NOTESHARED_EXPORT CreateNewNoteJob : public QObject
Q_OBJECT
public:
explicit
CreateNewNoteJob
(
QObject
*
parent
=
nullptr
,
QWidget
*
widget
=
nullptr
);
~
CreateNewNoteJob
();
~
CreateNewNoteJob
()
override
;
void
setNote
(
const
QString
&
name
,
const
QString
&
text
);
...
...
noteshared/src/network/notehostdialog.h
View file @
7d31abff
...
...
@@ -25,7 +25,7 @@ class NoteHostDialog : public QDialog
Q_OBJECT
public:
explicit
NoteHostDialog
(
const
QString
&
caption
,
QWidget
*
parent
=
nullptr
);
~
NoteHostDialog
();
~
NoteHostDialog
()
override
;
Q_REQUIRED_RESULT
QString
host
()
const
;
/**
...
...
noteshared/src/network/notesnetworkreceiver.h
View file @
7d31abff
...
...
@@ -22,7 +22,7 @@ class NOTESHARED_EXPORT NotesNetworkReceiver : public QObject
Q_OBJECT
public:
explicit
NotesNetworkReceiver
(
QTcpSocket
*
);
~
NotesNetworkReceiver
();
~
NotesNetworkReceiver
()
override
;
Q_SIGNALS:
void
sigNoteReceived
(
const
QString
&
,
const
QString
&
);
...
...
noteshared/src/network/notesnetworksender.h
View file @
7d31abff
...
...
@@ -19,7 +19,7 @@ class NotesNetworkSender : public QObject
Q_OBJECT
public:
explicit
NotesNetworkSender
(
QTcpSocket
*
socket
);
~
NotesNetworkSender
();
~
NotesNetworkSender
()
override
;
void
setSenderId
(
const
QString
&
sender
);
void
setNote
(
const
QString
&
title
,
const
QString
&
text
);
...
...
noteshared/src/widget/notelistwidget.h
View file @
7d31abff
...
...
@@ -17,7 +17,7 @@ class NOTESHARED_EXPORT NoteListWidget : public QListWidget
Q_OBJECT
public:
explicit
NoteListWidget
(
QWidget
*
parent
=
nullptr
);
~
NoteListWidget
();
~
NoteListWidget
()
override
;
void
setNotes
(
const
Akonadi
::
Item
::
List
&
notes
);
void
addNotes
(
const
Akonadi
::
Item
::
List
&
notes
);
...
...
src/apps/knotesakonaditray.h
View file @
7d31abff
...
...
@@ -13,7 +13,7 @@ class KNotesAkonadiTray : public KStatusNotifierItem
Q_OBJECT
public:
explicit
KNotesAkonadiTray
(
QWidget
*
parent
=
nullptr
);
~
KNotesAkonadiTray
();
~
KNotesAkonadiTray
()
override
;
void
updateNumberOfNotes
(
int
number
);
...
...
src/apps/knotesapp.h
View file @
7d31abff
...
...
@@ -37,7 +37,7 @@ class KNotesApp : public QWidget, virtual public KXMLGUIClient
Q_OBJECT
public:
explicit
KNotesApp
(
QWidget
*
parent
=
nullptr
);
~
KNotesApp
();
~
KNotesApp
()
override
;
Q_REQUIRED_RESULT
QString
name
(
Akonadi
::
Item
::
Id
id
)
const
;
Q_REQUIRED_RESULT
QString
text
(
Akonadi
::
Item
::
Id
id
)
const
;
...
...
src/apps/knotestray.h
View file @
7d31abff
...
...
@@ -13,7 +13,7 @@ class KNotesTray : public KStatusNotifierItem
Q_OBJECT
public:
explicit
KNotesTray
(
QWidget
*
parent
=
nullptr
);
~
KNotesTray
();
~
KNotesTray
()
override
;
void
updateNumberOfNotes
(
int
value
);
...
...
src/configdialog/knotecollectionconfigwidget.h
View file @
7d31abff
...
...
@@ -42,7 +42,7 @@ class KNoteCollectionConfigWidget : public QWidget
Q_OBJECT
public:
explicit
KNoteCollectionConfigWidget
(
QWidget
*
parent
=
nullptr
);
~
KNoteCollectionConfigWidget
();
~
KNoteCollectionConfigWidget
()
override
;
void
updateCollectionsRecursive
();
...
...
src/configdialog/knoteconfigdialog.h
View file @
7d31abff
...
...
@@ -24,7 +24,7 @@ class KNOTES_EXPORT KNoteConfigDialog : public KCMultiDialog
Q_OBJECT
public:
explicit
KNoteConfigDialog
(
const
QString
&
title
,
QWidget
*
parent
);
~
KNoteConfigDialog
();
~
KNoteConfigDialog
()
override
;
public
Q_SLOTS
:
void
slotOk
();
...
...
src/configdialog/knotedisplayconfigwidget.h
View file @
7d31abff
...
...
@@ -18,7 +18,7 @@ class KNoteDisplayConfigWidget : public QWidget
Q_OBJECT
public:
explicit
KNoteDisplayConfigWidget
(
bool
defaults
,
QWidget
*
parent
=
nullptr
);
~
KNoteDisplayConfigWidget
();
~
KNoteDisplayConfigWidget
()
override
;
void
load
(
NoteShared
::
NoteDisplayAttribute
*
attr
);
void
save
(
NoteShared
::
NoteDisplayAttribute
*
attr
);
...
...
src/configdialog/knoteeditorconfigwidget.h
View file @
7d31abff
...
...
@@ -19,7 +19,7 @@ class KNoteEditorConfigWidget : public QWidget
Q_OBJECT
public:
explicit
KNoteEditorConfigWidget
(
QWidget
*
parent
=
nullptr
);
~
KNoteEditorConfigWidget
();
~
KNoteEditorConfigWidget
()
override
;
void
load
(
NoteShared
::
NoteDisplayAttribute
*
attr
,
bool
isRichText
);
void
save
(
NoteShared
::
NoteDisplayAttribute
*
attr
,
bool
&
isRichText
);
...
...
src/dialog/knotedeleteselectednotesdialog.h
View file @
7d31abff
...
...
@@ -18,7 +18,7 @@ class KNoteDeleteSelectedNotesDialog : public QDialog
Q_OBJECT
public:
explicit
KNoteDeleteSelectedNotesDialog
(
QWidget
*
parent
=
nullptr
);
~
KNoteDeleteSelectedNotesDialog
();
~
KNoteDeleteSelectedNotesDialog
()
override
;
void
setNotes
(
const
Akonadi
::
Item
::
List
&
notes
);
...
...
src/dialog/knoteselectednotesdialog.h
View file @
7d31abff
...
...
@@ -16,7 +16,7 @@ class KNoteSelectedNotesDialog : public QDialog
Q_OBJECT
public:
explicit
KNoteSelectedNotesDialog
(
QWidget
*
parent
=
nullptr
);
~
KNoteSelectedNotesDialog
();
~
KNoteSelectedNotesDialog
()
override
;
void
setNotes
(
const
QHash
<
Akonadi
::
Item
::
Id
,
KNote
*>
&
notes
);
...
...
Prev
1
2
Next
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