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
P
PIM Messagelib
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
1
Issues
1
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
PIM
PIM Messagelib
Commits
5328082f
Commit
5328082f
authored
Mar 01, 2017
by
Laurent Montel
😁
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Rename method as requested by David
parent
6ed0d76e
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
messageviewer/src/viewer/viewer_p.cpp
messageviewer/src/viewer/viewer_p.cpp
+2
-2
messageviewer/src/viewer/viewer_p.h
messageviewer/src/viewer/viewer_p.h
+1
-1
No files found.
messageviewer/src/viewer/viewer_p.cpp
View file @
5328082f
...
...
@@ -1720,7 +1720,7 @@ void ViewerPrivate::createActions()
mDisableEmoticonAction
=
new
KToggleAction
(
i18n
(
"Disable Emoticon"
),
this
);
ac
->
addAction
(
QStringLiteral
(
"disable_emoticon"
),
mDisableEmoticonAction
);
connect
(
mDisableEmoticonAction
,
&
QAction
::
triggered
,
this
,
&
ViewerPrivate
::
slot
DisableEmoticon
);
connect
(
mDisableEmoticonAction
,
&
QAction
::
triggered
,
this
,
&
ViewerPrivate
::
slot
ToggleEmoticons
);
ac
->
setDefaultShortcut
(
mFindInMessageAction
,
KStandardShortcut
::
find
().
first
());
}
...
...
@@ -3137,7 +3137,7 @@ void ViewerPrivate::setPrintElementBackground(bool printElementBackground)
mViewer
->
setPrintElementBackground
(
printElementBackground
);
}
void
ViewerPrivate
::
slot
DisableEmoticon
()
void
ViewerPrivate
::
slot
ToggleEmoticons
()
{
mForceEmoticons
=
!
mForceEmoticons
;
update
(
MimeTreeParser
::
Force
);
...
...
messageviewer/src/viewer/viewer_p.h
View file @
5328082f
...
...
@@ -474,7 +474,7 @@ private Q_SLOTS:
void
slotExportHtmlPageSuccess
(
const
QString
&
filename
);
void
slotHandlePagePrinted
(
bool
result
);
void
slotLoadStarted
();
void
slot
DisableEmoticon
();
void
slot
ToggleEmoticons
();
void
slotCheckUrl
(
WebEngineViewer
::
CheckPhishingUrlJob
::
UrlStatus
status
,
const
QUrl
&
url
,
const
Akonadi
::
Item
&
item
);
public
Q_SLOTS
:
/** An URL has been activate with a click. */
...
...
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