Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
F
flatpak-qt-creator
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
Environments
Packages & Registries
Packages & Registries
Container Registry
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
Marco Bubke
flatpak-qt-creator
Commits
218ac78a
Commit
218ac78a
authored
Nov 25, 2009
by
hjk
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cppeditor: fix book style capitalization
parent
f2392ffb
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
src/plugins/cppeditor/cppplugin.cpp
src/plugins/cppeditor/cppplugin.cpp
+3
-3
No files found.
src/plugins/cppeditor/cppplugin.cpp
View file @
218ac78a
...
...
@@ -227,7 +227,7 @@ bool CppPlugin::initialize(const QStringList & /*arguments*/, QString *errorMess
Core
::
Command
*
cmd
;
Core
::
ActionContainer
*
cppToolsMenu
=
am
->
actionContainer
(
QLatin1String
(
CppTools
::
Constants
::
M_TOOLS_CPP
));
QAction
*
jumpToDefinition
=
new
QAction
(
tr
(
"Follow Symbol
u
nder Cursor"
),
this
);
QAction
*
jumpToDefinition
=
new
QAction
(
tr
(
"Follow Symbol
U
nder Cursor"
),
this
);
cmd
=
am
->
registerAction
(
jumpToDefinition
,
Constants
::
JUMP_TO_DEFINITION
,
context
);
cmd
->
setDefaultKeySequence
(
QKeySequence
(
Qt
::
Key_F2
));
...
...
@@ -236,7 +236,7 @@ bool CppPlugin::initialize(const QStringList & /*arguments*/, QString *errorMess
contextMenu
->
addAction
(
cmd
);
cppToolsMenu
->
addAction
(
cmd
);
QAction
*
switchDeclarationDefinition
=
new
QAction
(
tr
(
"Switch
b
etween Method Declaration/Definition"
),
this
);
QAction
*
switchDeclarationDefinition
=
new
QAction
(
tr
(
"Switch
B
etween Method Declaration/Definition"
),
this
);
cmd
=
am
->
registerAction
(
switchDeclarationDefinition
,
Constants
::
SWITCH_DECLARATION_DEFINITION
,
context
);
cmd
->
setDefaultKeySequence
(
QKeySequence
(
"Shift+F2"
));
...
...
@@ -252,7 +252,7 @@ bool CppPlugin::initialize(const QStringList & /*arguments*/, QString *errorMess
contextMenu
->
addAction
(
cmd
);
cppToolsMenu
->
addAction
(
cmd
);
m_renameSymbolUnderCursorAction
=
new
QAction
(
tr
(
"Rename Symbol
u
nder Cursor"
),
this
);
m_renameSymbolUnderCursorAction
=
new
QAction
(
tr
(
"Rename Symbol
U
nder Cursor"
),
this
);
cmd
=
am
->
registerAction
(
m_renameSymbolUnderCursorAction
,
Constants
::
RENAME_SYMBOL_UNDER_CURSOR
,
context
);
cmd
->
setDefaultKeySequence
(
QKeySequence
(
"CTRL+SHIFT+R"
));
...
...
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