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
7a35865c
Commit
7a35865c
authored
Feb 23, 2011
by
hjk
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix a few krazy warnings
parent
2e59bc9a
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
6 deletions
+6
-6
src/plugins/debugger/pdb/pdbengine.cpp
src/plugins/debugger/pdb/pdbengine.cpp
+2
-2
src/plugins/fakevim/fakevimhandler.cpp
src/plugins/fakevim/fakevimhandler.cpp
+3
-3
src/plugins/macros/macromanager.cpp
src/plugins/macros/macromanager.cpp
+1
-1
No files found.
src/plugins/debugger/pdb/pdbengine.cpp
View file @
7a35865c
...
...
@@ -120,7 +120,7 @@ void PdbEngine::postDirectCommand(const QByteArray &command)
{
QTC_ASSERT
(
m_pdbProc
.
state
()
==
QProcess
::
Running
,
notifyEngineIll
());
showMessage
(
_
(
command
),
LogInput
);
m_pdbProc
.
write
(
command
+
"
\n
"
);
m_pdbProc
.
write
(
command
+
'\n'
);
}
void
PdbEngine
::
postCommand
(
const
QByteArray
&
command
,
...
...
@@ -138,7 +138,7 @@ void PdbEngine::postCommand(const QByteArray &command,
m_commands
.
enqueue
(
cmd
);
qDebug
()
<<
"ENQUEUE: "
<<
command
<<
cmd
.
callbackName
;
showMessage
(
_
(
cmd
.
command
),
LogInput
);
m_pdbProc
.
write
(
cmd
.
command
+
"
\n
"
);
m_pdbProc
.
write
(
cmd
.
command
+
'\n'
);
}
void
PdbEngine
::
shutdownInferior
()
...
...
src/plugins/fakevim/fakevimhandler.cpp
View file @
7a35865c
...
...
@@ -2774,7 +2774,7 @@ EventResult FakeVimHandler::Private::handleInsertMode(const Input &input)
}
else
if
(
input
.
isReturn
())
{
m_submode
=
NoSubMode
;
insertText
(
Register
(
"
\n
"
));
m_lastInsertion
+=
"
\n
"
;
m_lastInsertion
+=
'\n'
;
insertAutomaticIndentation
(
true
);
setTargetColumn
();
}
else
if
(
input
.
isBackspace
())
{
...
...
@@ -2974,7 +2974,7 @@ EventResult FakeVimHandler::Private::handleSearchSubSubMode(const Input &input)
sd
.
highlightMatches
=
true
;
search
(
sd
);
}
finishMovement
(
m_commandPrefix
+
needle
+
"
\n
"
);
finishMovement
(
m_commandPrefix
+
needle
+
'\n'
);
}
enterCommandMode
();
highlightMatches
(
needle
);
...
...
@@ -4613,7 +4613,7 @@ void FakeVimHandler::Private::enterExMode()
m_mode
=
ExMode
;
m_submode
=
NoSubMode
;
m_subsubmode
=
NoSubSubMode
;
m_commandPrefix
=
":"
;
m_commandPrefix
=
':'
;
}
void
FakeVimHandler
::
Private
::
recordJump
()
...
...
src/plugins/macros/macromanager.cpp
View file @
7a35865c
...
...
@@ -151,7 +151,7 @@ void MacroManager::MacroManagerPrivate::initialize()
QStringList
files
=
dir
.
entryList
(
filter
,
QDir
::
Files
);
foreach
(
const
QString
&
name
,
files
)
{
QString
fileName
=
dir
.
absolutePath
()
+
"/"
+
name
;
QString
fileName
=
dir
.
absolutePath
()
+
'/'
+
name
;
Macro
*
macro
=
new
Macro
;
macro
->
loadHeader
(
fileName
);
addMacro
(
macro
);
...
...
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