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
Konsole
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
2
Issues
2
List
Boards
Labels
Service Desk
Milestones
Merge Requests
19
Merge Requests
19
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
Utilities
Konsole
Commits
c87016ae
Commit
c87016ae
authored
Jun 19, 2016
by
Kurt Hindenburg
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use new QT5 signal/slot convention
parent
f5418597
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
2 deletions
+1
-2
src/main.cpp
src/main.cpp
+1
-2
No files found.
src/main.cpp
View file @
c87016ae
...
...
@@ -156,8 +156,7 @@ extern "C" int Q_DECL_EXPORT kdemain(int argc, char* argv[])
// The activateRequested() signal is emitted when a second instance
// of Konsole is started.
QObject
::
connect
(
&
dbusService
,
SIGNAL
(
activateRequested
(
QStringList
,
QString
)),
&
konsoleApp
,
SLOT
(
slotActivateRequested
(
QStringList
,
QString
)));
QObject
::
connect
(
&
dbusService
,
&
KDBusService
::
activateRequested
,
&
konsoleApp
,
&
Application
::
slotActivateRequested
);
if
(
!
konsoleApp
.
newInstance
())
{
// An argument that printed something and mean we should just quit was passed.
...
...
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