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
KDebugSettings
Commits
67c5a19e
Commit
67c5a19e
authored
Dec 17, 2020
by
Laurent Montel
😁
Browse files
Add missing override
parent
59f7ab3c
Changes
9
Hide whitespace changes
Inline
Side-by-side
src/categorytypecombobox.h
View file @
67c5a19e
...
...
@@ -30,7 +30,7 @@ class LIBKDEBUGSETTINGS_EXPORT CategoryTypeComboBox : public QComboBox
Q_OBJECT
public:
explicit
CategoryTypeComboBox
(
bool
customType
,
QWidget
*
parent
=
nullptr
);
~
CategoryTypeComboBox
();
~
CategoryTypeComboBox
()
override
;
Q_REQUIRED_RESULT
LoggingCategory
::
LoggingType
type
()
const
;
void
setType
(
LoggingCategory
::
LoggingType
type
);
...
...
src/categorywarning.h
View file @
67c5a19e
...
...
@@ -28,7 +28,7 @@ class CategoryWarning : public KMessageWidget
Q_OBJECT
public:
explicit
CategoryWarning
(
QWidget
*
parent
=
nullptr
);
~
CategoryWarning
();
~
CategoryWarning
()
override
;
};
#endif // CATEGORYWARNING_H
src/configurecustomsettingdialog.h
View file @
67c5a19e
...
...
@@ -29,7 +29,7 @@ class ConfigureCustomSettingDialog : public QDialog
Q_OBJECT
public:
explicit
ConfigureCustomSettingDialog
(
QWidget
*
parent
=
nullptr
);
~
ConfigureCustomSettingDialog
();
~
ConfigureCustomSettingDialog
()
override
;
void
setRule
(
const
QString
&
rule
);
Q_REQUIRED_RESULT
QString
rule
()
const
;
private:
...
...
src/configurecustomsettingwidget.h
View file @
67c5a19e
...
...
@@ -30,7 +30,7 @@ class ConfigureCustomSettingWidget : public QWidget
Q_OBJECT
public:
explicit
ConfigureCustomSettingWidget
(
QWidget
*
parent
=
nullptr
);
~
ConfigureCustomSettingWidget
();
~
ConfigureCustomSettingWidget
()
override
;
Q_REQUIRED_RESULT
QString
rule
()
const
;
void
setRule
(
const
QString
&
rule
);
...
...
src/customdebugsettingspage.h
View file @
67c5a19e
...
...
@@ -30,7 +30,7 @@ class CustomDebugSettingsPage : public QWidget
Q_OBJECT
public:
explicit
CustomDebugSettingsPage
(
QWidget
*
parent
=
nullptr
);
~
CustomDebugSettingsPage
();
~
CustomDebugSettingsPage
()
override
;
void
fillList
(
const
LoggingCategory
::
List
&
list
);
Q_REQUIRED_RESULT
LoggingCategory
::
List
rules
()
const
;
...
...
src/environmentsettingsrulespage.h
View file @
67c5a19e
...
...
@@ -28,7 +28,7 @@ class EnvironmentSettingsRulesPage : public QWidget
Q_OBJECT
public:
explicit
EnvironmentSettingsRulesPage
(
QWidget
*
parent
=
nullptr
);
~
EnvironmentSettingsRulesPage
();
~
EnvironmentSettingsRulesPage
()
override
;
void
setRules
(
const
QString
&
rules
);
private:
EnvironmentPlainTextEdit
*
mRichTextEdit
=
nullptr
;
...
...
src/kdeapplicationtreelistwidget.h
View file @
67c5a19e
...
...
@@ -34,8 +34,8 @@ public:
IdentifierName
=
3
};
KDEApplicationTreeListWidgetItem
(
const
QString
&
logName
,
QTreeWidget
*
parent
);
~
KDEApplicationTreeListWidgetItem
();
explicit
KDEApplicationTreeListWidgetItem
(
const
QString
&
logName
,
QTreeWidget
*
parent
);
~
KDEApplicationTreeListWidgetItem
()
override
;
Q_REQUIRED_RESULT
QString
logName
()
const
;
void
setLogName
(
const
QString
&
category
);
...
...
src/kdebugsettingsdialog.h
View file @
67c5a19e
...
...
@@ -36,7 +36,7 @@ class KDebugSettingsDialog : public QDialog
Q_OBJECT
public:
explicit
KDebugSettingsDialog
(
QWidget
*
parent
=
nullptr
);
~
KDebugSettingsDialog
();
~
KDebugSettingsDialog
()
override
;
private:
void
slotAccepted
();
...
...
src/loadgroupmenu.h
View file @
67c5a19e
...
...
@@ -28,7 +28,7 @@ class LoadGroupMenu : public QMenu
Q_OBJECT
public:
explicit
LoadGroupMenu
(
QWidget
*
parent
);
~
LoadGroupMenu
();
~
LoadGroupMenu
()
override
;
};
#endif // LOADGROUPMENU_H
Write
Preview
Supports
Markdown
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