From fca632faa0c0ce211a74787d688be7cd6627cd30 Mon Sep 17 00:00:00 2001 From: Jiri Moskovcak Date: Wed, 3 Feb 2010 22:06:07 +0100 Subject: GUI: fixed windows icons and titles rhbz#537240, rhbz#560964 --- src/Gui/ccgui.glade | 2 ++ src/Gui/settings.glade | 11 +++++++---- 2 files changed, 9 insertions(+), 4 deletions(-) (limited to 'src') diff --git a/src/Gui/ccgui.glade b/src/Gui/ccgui.glade index 65ad9fe..237f23a 100644 --- a/src/Gui/ccgui.glade +++ b/src/Gui/ccgui.glade @@ -9,6 +9,7 @@ True center-on-parent 470 + /usr/share/pixmaps/abrt.png main_window3 @@ -76,6 +77,7 @@ About ABRT False center-on-parent + /usr/share/pixmaps/abrt.png dialog False ABRT diff --git a/src/Gui/settings.glade b/src/Gui/settings.glade index 655c15b..a9a14f4 100644 --- a/src/Gui/settings.glade +++ b/src/Gui/settings.glade @@ -3,11 +3,12 @@ - Settings + Plugins True center-on-parent 450 400 + /usr/share/pixmaps/abrt.png True @@ -254,11 +255,12 @@ - Global Settings + Preferences True center-on-parent 450 400 + /usr/share/pixmaps/abrt.png True @@ -706,7 +708,7 @@ end - gtk-cancel + gtk-cancel True True True @@ -720,7 +722,7 @@ - gtk-ok + gtk-ok True False True @@ -753,6 +755,7 @@ center-on-parent 400 400 + /usr/share/pixmaps/abrt.png wGlobalSettings -- cgit From ac9988a068b184689228dfaf18759cc2f67464ae Mon Sep 17 00:00:00 2001 From: Jiri Moskovcak Date: Wed, 3 Feb 2010 23:01:20 +0100 Subject: GUI: fixed scrolling in reporter dialog rhbz#559687 --- src/Gui/report.glade | 24 ++++++------------------ 1 file changed, 6 insertions(+), 18 deletions(-) (limited to 'src') diff --git a/src/Gui/report.glade b/src/Gui/report.glade index 13e4c14..e7f37ec 100644 --- a/src/Gui/report.glade +++ b/src/Gui/report.glade @@ -374,16 +374,10 @@ automatic automatic - + True - queue - - - True - True - word-char - - + True + word-char @@ -417,16 +411,10 @@ automatic automatic - + True - queue - - - True - True - word-char - - + True + word-char -- cgit From 80f3d6ddc8ed631e463c80c5d7c98d03c7b74f57 Mon Sep 17 00:00:00 2001 From: Jiri Moskovcak Date: Wed, 3 Feb 2010 23:05:11 +0100 Subject: swapped lines, iterator is not defined after erase() is called - and this makes valgrind unhappy --- src/Daemon/PluginManager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/Daemon/PluginManager.cpp b/src/Daemon/PluginManager.cpp index 273cceb..15e9bee 100644 --- a/src/Daemon/PluginManager.cpp +++ b/src/Daemon/PluginManager.cpp @@ -261,8 +261,8 @@ void CPluginManager::UnLoadPlugin(const char *pName) m_mapPlugins.erase(it_plugin); } log("UnRegistered %s plugin %s", plugin_type_str[it_module->second->GetType()], pName); - m_mapLoadedModules.erase(it_module); delete it_module->second; + m_mapLoadedModules.erase(it_module); } } -- cgit