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
f88b9d5a
Commit
f88b9d5a
authored
May 12, 2010
by
Robert Loehning
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Avoid warning about failing connection.
parent
b6fb8bba
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
src/plugins/debugger/cdb/cdbdebugengine.cpp
src/plugins/debugger/cdb/cdbdebugengine.cpp
+3
-2
No files found.
src/plugins/debugger/cdb/cdbdebugengine.cpp
View file @
f88b9d5a
...
...
@@ -1578,11 +1578,12 @@ IDebuggerEngine *createCdbEngine(DebuggerManager *parent,
// Create engine
QString
errorMessage
;
IDebuggerEngine
*
engine
=
CdbDebugEngine
::
create
(
parent
,
options
,
&
errorMessage
);
if
(
!
engine
)
{
if
(
engine
)
{
QObject
::
connect
(
optionsPage
,
SIGNAL
(
debuggerPathsChanged
()),
engine
,
SLOT
(
syncDebuggerPaths
()));
}
else
{
optionsPage
->
setFailureMessage
(
errorMessage
);
qWarning
(
"%s
\n
"
,
qPrintable
(
errorMessage
));
}
QObject
::
connect
(
optionsPage
,
SIGNAL
(
debuggerPathsChanged
()),
engine
,
SLOT
(
syncDebuggerPaths
()));
return
engine
;
}
...
...
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