Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
Utilities
Konsole
Commits
eda0e431
Commit
eda0e431
authored
Sep 15, 2014
by
Kurt Hindenburg
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Minor whitespace changes
parent
47208faf
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
3 additions
and
5 deletions
+3
-5
src/CharacterColor.h
src/CharacterColor.h
+0
-1
src/ColorSchemeEditor.cpp
src/ColorSchemeEditor.cpp
+1
-1
src/MainWindow.cpp
src/MainWindow.cpp
+1
-1
src/TerminalCharacterDecoder.cpp
src/TerminalCharacterDecoder.cpp
+1
-1
src/TerminalDisplay.cpp
src/TerminalDisplay.cpp
+0
-1
No files found.
src/CharacterColor.h
View file @
eda0e431
...
...
@@ -95,7 +95,6 @@ public:
* color and font weight.
*/
friend
bool
operator
!=
(
const
ColorEntry
&
a
,
const
ColorEntry
&
b
);
};
inline
bool
operator
==
(
const
ColorEntry
&
a
,
const
ColorEntry
&
b
)
...
...
src/ColorSchemeEditor.cpp
View file @
eda0e431
...
...
@@ -84,7 +84,7 @@ ColorSchemeEditor::ColorSchemeEditor(QWidget* aParent)
dirModel
->
setFilter
(
QDir
::
AllEntries
);
dirModel
->
setRootPath
(
QString
(
'/'
));
QCompleter
*
completer
=
new
QCompleter
(
this
);
completer
->
setModel
(
dirModel
);
completer
->
setModel
(
dirModel
);
_ui
->
wallpaperPath
->
setCompleter
(
completer
);
_ui
->
wallpaperPath
->
setClearButtonEnabled
(
true
);
...
...
src/MainWindow.cpp
View file @
eda0e431
...
...
@@ -79,7 +79,7 @@ MainWindow::MainWindow()
QMapIterator
<
QString
,
QString
>
i
(
configEntries
);
while
(
i
.
hasNext
())
{
i
.
next
();
if
(
i
.
key
().
startsWith
(
QLatin1String
(
"Width"
))
if
(
i
.
key
().
startsWith
(
QLatin1String
(
"Width"
))
||
i
.
key
().
startsWith
(
QLatin1String
(
"Height"
)))
{
group
.
deleteEntry
(
i
.
key
());
}
...
...
src/TerminalCharacterDecoder.cpp
View file @
eda0e431
...
...
@@ -262,7 +262,7 @@ void HTMLDecoder::decodeLine(const Character* const characters, int count, LineP
}
else
{
// HTML truncates multiple spaces, so use a space marker instead
// Use   instead of   so xmllint will work.
text
.
append
(
" "
);
text
.
append
(
" "
);
}
}
...
...
src/TerminalDisplay.cpp
View file @
eda0e431
...
...
@@ -2919,7 +2919,6 @@ void TerminalDisplay::outputSuspended(bool suspended)
_gridLayout
->
addItem
(
new
QSpacerItem
(
0
,
0
,
QSizePolicy
::
Expanding
,
QSizePolicy
::
Expanding
),
1
,
0
);
}
// Remove message after a few seconds
if
(
suspended
)
{
...
...
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