Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
SDK
KCacheGrind
Commits
84f059bc
Commit
84f059bc
authored
Nov 13, 2009
by
Josef Weidendorfer
Browse files
Be consistent with dots in menu item labels
svn path=/trunk/KDE/kdesdk/kcachegrind/; revision=1048529
parent
8414ba3b
Changes
3
Hide whitespace changes
Inline
Side-by-side
libviews/callgraphview.cpp
View file @
84f059bc
...
...
@@ -2973,8 +2973,8 @@ void CallGraphView::contextMenuEvent(QContextMenuEvent* e)
popup
.
addSeparator
();
QMenu
*
epopup
=
popup
.
addMenu
(
tr
(
"Export Graph"
));
QAction
*
exportAsDot
=
epopup
->
addAction
(
tr
(
"As DOT file
..."
));
QAction
*
exportAsImage
=
epopup
->
addAction
(
tr
(
"As Image
..."
));
QAction
*
exportAsDot
=
epopup
->
addAction
(
tr
(
"As DOT file..."
));
QAction
*
exportAsImage
=
epopup
->
addAction
(
tr
(
"As Image..."
));
popup
.
addSeparator
();
QMenu
*
gpopup
=
popup
.
addMenu
(
tr
(
"Graph"
));
...
...
libviews/eventtypeview.cpp
View file @
84f059bc
...
...
@@ -126,7 +126,7 @@ void EventTypeView::context(const QPoint & p)
QAction
*
newTypeAction
=
0
;
if
(
_data
)
{
popup
.
addSeparator
();
newTypeAction
=
popup
.
addAction
(
tr
(
"New Event Type
..."
));
newTypeAction
=
popup
.
addAction
(
tr
(
"New Event Type..."
));
}
QAction
*
a
=
popup
.
exec
(
viewport
()
->
mapToGlobal
(
p
));
...
...
qcachegrind/qcgtoplevel.cpp
View file @
84f059bc
...
...
@@ -531,7 +531,7 @@ void QCGTopLevel::createActions()
connect
(
_configureAction
,
SIGNAL
(
triggered
()),
this
,
SLOT
(
configure
()));
// help menu actions
_aboutAction
=
new
QAction
(
tr
(
"&About QCachegrind
..."
),
this
);
_aboutAction
=
new
QAction
(
tr
(
"&About QCachegrind..."
),
this
);
_aboutAction
->
setStatusTip
(
tr
(
"Show the application's About box"
));
connect
(
_aboutAction
,
SIGNAL
(
triggered
()),
this
,
SLOT
(
about
()));
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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