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:
Aaron J. Seigo 2008-08-20 13:11:01 +00:00
parent 71796f6bf3
commit ab52f8c294
2 changed files with 2 additions and 2 deletions

View File

@ -190,7 +190,7 @@ void Wallpaper::init(const KConfigGroup &config)
Q_UNUSED(config);
}
void Wallpaper::save(KConfigGroup config)
void Wallpaper::save(KConfigGroup &config)
{
Q_UNUSED(config);
}

View File

@ -153,7 +153,7 @@ class PLASMA_EXPORT Wallpaper : public QObject
* This method is called when settings need to be saved.
* @param config Config group to save settings
**/
virtual void save(KConfigGroup config);
virtual void save(KConfigGroup &config);
/**
* Returns widget for configuration dialog.