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
Cervisia
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
SDK
Cervisia
Commits
d12b74c6
Commit
d12b74c6
authored
Dec 19, 2006
by
Aaron J. Seigo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
KStdAction->KStandardAction
svn path=/trunk/KDE/kdesdk/cervisia/; revision=614808
parent
742293c1
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
7 deletions
+7
-7
cervisiapart.cpp
cervisiapart.cpp
+3
-3
cervisiashell.cpp
cervisiashell.cpp
+4
-4
No files found.
cervisiapart.cpp
View file @
d12b74c6
...
...
@@ -39,7 +39,7 @@
#include <kprocess.h>
#include <kpropertiesdialog.h>
#include <kstatusbar.h>
#include <kstdaction.h>
#include <kst
andar
daction.h>
#include <kxmlguifactory.h>
#include <krun.h>
#include <kdebug.h>
...
...
@@ -575,7 +575,7 @@ void CervisiaPart::setupActions()
//
// Help Menu
//
action
=
KStdAction
::
help
(
this
,
SLOT
(
slotHelp
()),
action
=
KSt
andar
dAction
::
help
(
this
,
SLOT
(
slotHelp
()),
actionCollection
()
);
action
=
new
KAction
(
i18n
(
"CVS &Manual"
),
actionCollection
(),
"help_cvs_manual"
);
...
...
@@ -591,7 +591,7 @@ void CervisiaPart::setupActions()
connect
(
toggaction
,
SIGNAL
(
triggered
(
bool
)
),
SLOT
(
slotUnfoldFolder
()
));
toggaction
->
setCheckedState
(
i18n
(
"Fold Folder"
));
//action = KStdAction::aboutApp( this, SLOT(aboutCervisia()),
//action = KSt
andar
dAction::aboutApp( this, SLOT(aboutCervisia()),
// actionCollection(), "help_about_cervisia" );
}
...
...
cervisiashell.cpp
View file @
d12b74c6
...
...
@@ -30,7 +30,7 @@
#include <klocale.h>
#include <kmessagebox.h>
#include <kstatusbar.h>
#include <kstdaction.h>
#include <kst
andar
daction.h>
#include <kurl.h>
#include <kactioncollection.h>
...
...
@@ -97,19 +97,19 @@ void CervisiaShell::setupActions()
{
setStandardToolBarMenuEnabled
(
true
);
KAction
*
action
=
KStdAction
::
configureToolbars
(
this
,
SLOT
(
slotConfigureToolBars
()),
KAction
*
action
=
KSt
andar
dAction
::
configureToolbars
(
this
,
SLOT
(
slotConfigureToolBars
()),
actionCollection
()
);
QString
hint
=
i18n
(
"Allows you to configure the toolbar"
);
action
->
setToolTip
(
hint
);
action
->
setWhatsThis
(
hint
);
action
=
KStdAction
::
keyBindings
(
this
,
SLOT
(
slotConfigureKeys
()),
action
=
KSt
andar
dAction
::
keyBindings
(
this
,
SLOT
(
slotConfigureKeys
()),
actionCollection
()
);
hint
=
i18n
(
"Allows you to customize the keybindings"
);
action
->
setToolTip
(
hint
);
action
->
setWhatsThis
(
hint
);
action
=
KStdAction
::
quit
(
kapp
,
SLOT
(
quit
()
),
actionCollection
()
);
action
=
KSt
andar
dAction
::
quit
(
kapp
,
SLOT
(
quit
()
),
actionCollection
()
);
hint
=
i18n
(
"Exits Cervisia"
);
action
->
setToolTip
(
hint
);
action
->
setWhatsThis
(
hint
);
...
...
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