mirror of
https://bitbucket.org/smil3y/kde-workspace.git
synced 2025-02-23 10:22:49 +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
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
KCMMetaInfo(QWidget* parent, const QVariantList&);
|
||||
~KCMMetaInfo();
|
||||
|
||||
// KCModule reimplementations
|
||||
public Q_SLOTS:
|
||||
void load() final;
|
||||
void save() final;
|
||||
|
||||
|
|
|
@ -36,10 +36,10 @@ class KCMFreeSpace : public KCModule
|
|||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
// KCModule reimplementations
|
||||
KCMFreeSpace(QWidget *parent, const QVariantList &args);
|
||||
~KCMFreeSpace();
|
||||
|
||||
// KCModule reimplementations
|
||||
public Q_SLOTS:
|
||||
void load() final;
|
||||
void save() final;
|
||||
|
|
Loading…
Add table
Reference in a new issue