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
KmPlot
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
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
Education
KmPlot
Commits
de09277b
Commit
de09277b
authored
Nov 06, 2008
by
Laurent Montel
😁
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix shortcut warning
svn path=/trunk/KDE/kdeedu/kmplot/; revision=880693
parent
a3128bf4
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
kmplot/maindlg.cpp
kmplot/maindlg.cpp
+2
-2
No files found.
kmplot/maindlg.cpp
View file @
de09277b
...
...
@@ -276,13 +276,13 @@ void MainDlg::setupActions()
//BEGIN view menu
/// \todo check that new shortcuts work
Q
Action
*
zoomIn
=
actionCollection
()
->
addAction
(
"zoom_in"
);
K
Action
*
zoomIn
=
actionCollection
()
->
addAction
(
"zoom_in"
);
zoomIn
->
setText
(
i18n
(
"Zoom &In"
)
);
zoomIn
->
setShortcut
(
QKeySequence
(
Qt
::
ControlModifier
|
Qt
::
Key_1
)
);
zoomIn
->
setIcon
(
KIcon
(
"zoom-in"
)
);
connect
(
zoomIn
,
SIGNAL
(
triggered
(
bool
)),
View
::
self
(),
SLOT
(
zoomIn
())
);
Q
Action
*
zoomOut
=
actionCollection
()
->
addAction
(
"zoom_out"
);
K
Action
*
zoomOut
=
actionCollection
()
->
addAction
(
"zoom_out"
);
zoomOut
->
setText
(
i18n
(
"Zoom &Out"
));
zoomOut
->
setShortcut
(
QKeySequence
(
Qt
::
ControlModifier
|
Qt
::
Key_2
)
);
zoomOut
->
setIcon
(
KIcon
(
"zoom-out"
)
);
...
...
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