aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/popupeditor/PopupEditorWindow.cpp
diff options
context:
space:
mode:
authorGravatar Fabio Bas2012-04-08 17:21:26 +0000
committerGravatar Fabio Bas2012-04-08 17:21:26 +0000
commiteddc5c53f0ac8517efcb313eb7c19c9261e30618 (patch)
tree38960315614e561d57b1b0bf19a16cf658fdf074 /src/modules/popupeditor/PopupEditorWindow.cpp
parentremoved unused var, thanks gcc 4.7 (diff)
downloadKVIrc-eddc5c53f0ac8517efcb313eb7c19c9261e30618.tar.gz
KVIrc-eddc5c53f0ac8517efcb313eb7c19c9261e30618.tar.bz2
KVIrc-eddc5c53f0ac8517efcb313eb7c19c9261e30618.zip
single bugfix in webview object + a lot of make gcc happy
git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@6129 17fca916-40b9-46aa-a4ea-0a15b648b75c
Diffstat (limited to 'src/modules/popupeditor/PopupEditorWindow.cpp')
-rw-r--r--src/modules/popupeditor/PopupEditorWindow.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/popupeditor/PopupEditorWindow.cpp b/src/modules/popupeditor/PopupEditorWindow.cpp
index bb20859ff..dcdea254a 100644
--- a/src/modules/popupeditor/PopupEditorWindow.cpp
+++ b/src/modules/popupeditor/PopupEditorWindow.cpp
@@ -371,12 +371,12 @@ void SinglePopupEditor::customContextMenuRequested(const QPoint &pos)
m_pContextPopup->clear();
- PopupTreeWidgetItem * parentMenu = 0;
+ //PopupTreeWidgetItem * parentMenu = 0;
bool bIsMenu = false;
if(it)
{
- parentMenu = (PopupTreeWidgetItem *) (((PopupTreeWidgetItem *)it)->parent());
+ //parentMenu = (PopupTreeWidgetItem *) (((PopupTreeWidgetItem *)it)->parent());
bIsMenu = ((PopupTreeWidgetItem *)it)->m_type == PopupTreeWidgetItem::Menu;
}