diff --git a/src/Application.cpp b/src/Application.cpp index b4295d260..49cb4db7a 100644 --- a/src/Application.cpp +++ b/src/Application.cpp @@ -178,6 +178,8 @@ void Application::toggleBackgroundInstance() Application::~Application() { + SessionManager + delete SessionManager::instance(); delete ColorSchemeManager::instance(); delete KeyboardTranslatorManager::instance(); diff --git a/src/Profile.h b/src/Profile.h index 63584066b..df33fd5df 100644 --- a/src/Profile.h +++ b/src/Profile.h @@ -63,7 +63,7 @@ public: /** (QString) The descriptive name of this profile. */ Name, - /** (QString) TODO: Document me. */ + /** (QString) Title of this profile that will be displayed. */ Title, /** (QString) The name of the icon associated with this profile. This * is used in menus and tabs to represent the profile. diff --git a/src/SessionManager.cpp b/src/SessionManager.cpp index b018bfe9a..e64b7938f 100644 --- a/src/SessionManager.cpp +++ b/src/SessionManager.cpp @@ -125,7 +125,7 @@ QString SessionManager::loadProfile(const QString& shortPath) // load the profile ProfileReader* reader = 0; if ( path.endsWith(".desktop") ) - reader = 0; //new KDE3ProfileReader; + reader = 0; // new KDE3ProfileReader; else reader = new KDE4ProfileReader;