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
PIM
KNotes
Commits
16608065
Commit
16608065
authored
Jan 14, 2021
by
Laurent Montel
😁
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
GIT_SILENT: Remove extra ;
parent
50068f97
Pipeline
#47621
skipped
Changes
7
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
7 additions
and
7 deletions
+7
-7
notesagent/notesagentalarmdialog.cpp
notesagent/notesagentalarmdialog.cpp
+1
-1
noteshared/src/attributes/notelockattribute.cpp
noteshared/src/attributes/notelockattribute.cpp
+1
-1
noteshared/src/attributes/showfoldernotesattribute.cpp
noteshared/src/attributes/showfoldernotesattribute.cpp
+1
-1
src/apps/application.cpp
src/apps/application.cpp
+1
-1
src/kontactplugin/knotes_part.cpp
src/kontactplugin/knotes_part.cpp
+1
-1
src/kontactplugin/summarywidget.cpp
src/kontactplugin/summarywidget.cpp
+1
-1
src/notes/knote.cpp
src/notes/knote.cpp
+1
-1
No files found.
notesagent/notesagentalarmdialog.cpp
View file @
16608065
...
...
@@ -83,7 +83,7 @@ void NotesAgentAlarmDialog::slotCustomContextMenuRequested(const QPoint &pos)
if
(
mListWidget
->
selectedItems
().
isEmpty
())
{
return
;
}
Q_UNUSED
(
pos
)
;
Q_UNUSED
(
pos
)
auto
*
entriesContextMenu
=
new
QMenu
(
this
);
QAction
*
removeAlarm
=
new
QAction
(
QIcon
::
fromTheme
(
QStringLiteral
(
"edit-delete"
)),
i18n
(
"Remove Alarm"
),
entriesContextMenu
);
connect
(
removeAlarm
,
&
QAction
::
triggered
,
this
,
&
NotesAgentAlarmDialog
::
slotRemoveAlarm
);
...
...
noteshared/src/attributes/notelockattribute.cpp
View file @
16608065
...
...
@@ -25,7 +25,7 @@ NoteLockAttribute *NoteLockAttribute::clone() const
void
NoteLockAttribute
::
deserialize
(
const
QByteArray
&
data
)
{
Q_UNUSED
(
data
)
;
Q_UNUSED
(
data
)
}
QByteArray
NoteLockAttribute
::
serialized
()
const
...
...
noteshared/src/attributes/showfoldernotesattribute.cpp
View file @
16608065
...
...
@@ -33,5 +33,5 @@ QByteArray ShowFolderNotesAttribute::serialized() const
void
ShowFolderNotesAttribute
::
deserialize
(
const
QByteArray
&
data
)
{
Q_UNUSED
(
data
)
;
Q_UNUSED
(
data
)
}
src/apps/application.cpp
View file @
16608065
...
...
@@ -23,7 +23,7 @@ Application::~Application()
int
Application
::
activate
(
const
QStringList
&
args
,
const
QString
&
workingDir
)
{
Q_UNUSED
(
workingDir
)
;
Q_UNUSED
(
workingDir
)
QCommandLineParser
*
parser
=
cmdArgs
();
parser
->
process
(
args
);
...
...
src/kontactplugin/knotes_part.cpp
View file @
16608065
...
...
@@ -470,7 +470,7 @@ void KNotesPart::slotDeleteNotesFinished(KJob *job)
void
KNotesPart
::
popupRMB
(
QListWidgetItem
*
item
,
const
QPoint
&
pos
,
const
QPoint
&
globalPos
)
{
Q_UNUSED
(
item
)
;
Q_UNUSED
(
item
)
auto
*
contextMenu
=
new
QMenu
(
widget
());
if
(
mNotesWidget
->
notesView
()
->
itemAt
(
pos
))
{
...
...
src/kontactplugin/summarywidget.cpp
View file @
16608065
...
...
@@ -203,7 +203,7 @@ void KNotesSummaryWidget::createNote(const Akonadi::Item &item, int counter)
void
KNotesSummaryWidget
::
updateSummary
(
bool
force
)
{
Q_UNUSED
(
force
)
;
Q_UNUSED
(
force
)
updateFolderList
();
}
...
...
src/notes/knote.cpp
View file @
16608065
...
...
@@ -781,7 +781,7 @@ void KNote::createNoteHeader()
void
KNote
::
createNoteEditor
(
const
QString
&
configFile
)
{
Q_UNUSED
(
configFile
)
;
Q_UNUSED
(
configFile
)
m_editor
=
new
KNoteEdit
(
actionCollection
(),
this
);
m_noteLayout
->
addWidget
(
m_editor
);
m_editor
->
setNote
(
this
);
...
...
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