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
Plasma
KWin
Commits
e68d06b3
Commit
e68d06b3
authored
Jan 14, 2021
by
Vlad Zahorodnii
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add missing const keyword
parent
e8b045ce
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
ftrace.cpp
ftrace.cpp
+1
-1
ftrace.h
ftrace.h
+1
-1
No files found.
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
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