Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Utilities
Konsole
Commits
779f64d1
Commit
779f64d1
authored
Mar 03, 2022
by
Kurt Hindenburg
Browse files
Initializate class members
parent
60ca7edb
Pipeline
#144878
passed with stage
in 2 minutes
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/autotests/TerminalInterfaceTest.h
View file @
779f64d1
...
...
@@ -26,7 +26,7 @@ private Q_SLOTS:
private:
KParts
::
Part
*
createPart
();
KParts
::
Part
*
_terminalPart
;
KParts
::
Part
*
_terminalPart
=
nullptr
;
};
}
...
...
src/tests/PartManualTest.h
View file @
779f64d1
...
...
@@ -32,10 +32,10 @@ private:
KParts
::
Part
*
createPart
();
// variables for testShortcutOverride()
bool
_shortcutTriggered
;
bool
_overrideCalled
;
bool
_override
;
QEventLoop
*
_shortcutEventLoop
;
bool
_shortcutTriggered
=
false
;
bool
_overrideCalled
=
false
;
bool
_override
=
false
;
QEventLoop
*
_shortcutEventLoop
=
nullptr
;
};
}
...
...
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