make save take a KConfigGroup by ref, like all the other save methods in the library
svn path=/trunk/KDE/kdebase/workspace/libs/plasma/; revision=849909
This commit is contained in:
parent
71796f6bf3
commit
ab52f8c294
@ -190,7 +190,7 @@ void Wallpaper::init(const KConfigGroup &config)
|
|||||||
Q_UNUSED(config);
|
Q_UNUSED(config);
|
||||||
}
|
}
|
||||||
|
|
||||||
void Wallpaper::save(KConfigGroup config)
|
void Wallpaper::save(KConfigGroup &config)
|
||||||
{
|
{
|
||||||
Q_UNUSED(config);
|
Q_UNUSED(config);
|
||||||
}
|
}
|
||||||
|
@ -153,7 +153,7 @@ class PLASMA_EXPORT Wallpaper : public QObject
|
|||||||
* This method is called when settings need to be saved.
|
* This method is called when settings need to be saved.
|
||||||
* @param config Config group to save settings
|
* @param config Config group to save settings
|
||||||
**/
|
**/
|
||||||
virtual void save(KConfigGroup config);
|
virtual void save(KConfigGroup &config);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns widget for configuration dialog.
|
* Returns widget for configuration dialog.
|
||||||
|
Loading…
Reference in New Issue
Block a user