Skip to content
GitLab
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
7f2e1064
Commit
7f2e1064
authored
Jan 06, 2022
by
Kurt Hindenburg
Browse files
Align definition and declaration to class
I see no reason to mix struct and class
parent
039b4652
Pipeline
#119924
passed with stage
in 1 minute and 55 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/autotests/Vt102EmulationTest.h
View file @
7f2e1064
...
...
@@ -28,7 +28,7 @@ private:
static
void
sendAndCompare
(
TestEmulation
*
em
,
const
char
*
input
,
size_t
inputLen
,
const
QString
&
expectedPrint
,
const
QByteArray
&
expectedSent
);
};
struct
TestEmulation
:
public
Vt102Emulation
{
class
TestEmulation
:
public
Vt102Emulation
{
Q_OBJECT
// Give us access to protected functions
friend
class
Vt102EmulationTest
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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