mirror of
https://bitbucket.org/smil3y/kde-workspace.git
synced 2025-02-24 02:42:50 +00:00
kcontrol: mark KCMMetaInfo::load() and KCMMetaInfo::save() methods as slots
they are virtual slots in KCModule Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
This commit is contained in:
parent
c99191210f
commit
7048e8e31b
2 changed files with 3 additions and 2 deletions
|
@ -31,11 +31,12 @@
|
||||||
class KCMMetaInfo : public KCModule, public Ui_KMetaInfoDialog
|
class KCMMetaInfo : public KCModule, public Ui_KMetaInfoDialog
|
||||||
{
|
{
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
|
|
||||||
public:
|
public:
|
||||||
KCMMetaInfo(QWidget* parent, const QVariantList&);
|
KCMMetaInfo(QWidget* parent, const QVariantList&);
|
||||||
~KCMMetaInfo();
|
~KCMMetaInfo();
|
||||||
|
|
||||||
|
// KCModule reimplementations
|
||||||
|
public Q_SLOTS:
|
||||||
void load() final;
|
void load() final;
|
||||||
void save() final;
|
void save() final;
|
||||||
|
|
||||||
|
|
|
@ -36,10 +36,10 @@ class KCMFreeSpace : public KCModule
|
||||||
{
|
{
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
public:
|
public:
|
||||||
// KCModule reimplementations
|
|
||||||
KCMFreeSpace(QWidget *parent, const QVariantList &args);
|
KCMFreeSpace(QWidget *parent, const QVariantList &args);
|
||||||
~KCMFreeSpace();
|
~KCMFreeSpace();
|
||||||
|
|
||||||
|
// KCModule reimplementations
|
||||||
public Q_SLOTS:
|
public Q_SLOTS:
|
||||||
void load() final;
|
void load() final;
|
||||||
void save() final;
|
void save() final;
|
||||||
|
|
Loading…
Add table
Reference in a new issue