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
Plasma
KWin
Commits
e68d06b3
Commit
e68d06b3
authored
Jan 14, 2021
by
Vlad Zahorodnii
Browse files
Add missing const keyword
parent
e8b045ce
Changes
2
Hide whitespace changes
Inline
Side-by-side
ftrace.cpp
View file @
e68d06b3
...
...
@@ -33,7 +33,7 @@ FTraceLogger::FTraceLogger(QObject *parent)
}
}
bool
FTraceLogger
::
isEnabled
()
bool
FTraceLogger
::
isEnabled
()
const
{
return
m_file
.
isOpen
();
}
...
...
ftrace.h
View file @
e68d06b3
...
...
@@ -37,7 +37,7 @@ public:
/**
* Enabled through DBus and logging has started
*/
bool
isEnabled
();
bool
isEnabled
()
const
;
/**
* Main log function
...
...
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