aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/term
diff options
context:
space:
mode:
Diffstat (limited to 'src/modules/term')
-rw-r--r--src/modules/term/libkviterm.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/modules/term/libkviterm.cpp b/src/modules/term/libkviterm.cpp
index abdf6df92..4167697dd 100644
--- a/src/modules/term/libkviterm.cpp
+++ b/src/modules/term/libkviterm.cpp
@@ -99,10 +99,12 @@ static bool term_module_init(KviModule * m)
static bool term_module_cleanup(KviModule *)
{
#ifdef COMPILE_KDE_SUPPORT
- while(g_pTermWidgetList->first())delete g_pTermWidgetList->first();
+ while(g_pTermWidgetList->first())
+ delete g_pTermWidgetList->first();
delete g_pTermWidgetList;
g_pTermWidgetList = 0;
- while(g_pTermWindowList->first())g_pTermWindowList->first()->close();
+ while(g_pTermWindowList->first())
+ g_pTermWindowList->first()->close();
delete g_pTermWindowList;
g_pTermWindowList = 0;
#endif