aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/toolbareditor
diff options
context:
space:
mode:
authorGravatar Elvio Basello2011-01-06 03:52:09 +0000
committerGravatar Elvio Basello2011-01-06 03:52:09 +0000
commit2dd83d7b75fa4728b307b211550a60dc17be2dd0 (patch)
tree69208f071500c450009b2985fc3b784c0dd77cae /src/modules/toolbareditor
parentfixed notifier selection (diff)
downloadKVIrc-2dd83d7b75fa4728b307b211550a60dc17be2dd0.tar.gz
KVIrc-2dd83d7b75fa4728b307b211550a60dc17be2dd0.tar.bz2
KVIrc-2dd83d7b75fa4728b307b211550a60dc17be2dd0.zip
renamed a global pointer;
more work on KDE notifier; git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@5303 17fca916-40b9-46aa-a4ea-0a15b648b75c
Diffstat (limited to 'src/modules/toolbareditor')
-rw-r--r--src/modules/toolbareditor/CustomizeToolBarsDialog.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/modules/toolbareditor/CustomizeToolBarsDialog.cpp b/src/modules/toolbareditor/CustomizeToolBarsDialog.cpp
index e79fc482a..f5e7aed1e 100644
--- a/src/modules/toolbareditor/CustomizeToolBarsDialog.cpp
+++ b/src/modules/toolbareditor/CustomizeToolBarsDialog.cpp
@@ -537,9 +537,9 @@ void CustomizeToolBarsDialog::display(bool bTopLevel)
m_pInstance->setParent(0);
}
} else {
- if(m_pInstance->parent() != g_pFrame->splitter())
+ if(m_pInstance->parent() != g_pMainWindow->splitter())
{
- m_pInstance->setParent(g_pFrame->splitter());
+ m_pInstance->setParent(g_pMainWindow->splitter());
}
}
} else {
@@ -547,7 +547,7 @@ void CustomizeToolBarsDialog::display(bool bTopLevel)
{
m_pInstance = new CustomizeToolBarsDialog(0);
} else {
- m_pInstance = new CustomizeToolBarsDialog(g_pFrame->splitter());
+ m_pInstance = new CustomizeToolBarsDialog(g_pMainWindow->splitter());
}
}
m_pInstance->show();