summaryrefslogtreecommitdiff
path: root/ucbhelper/workben
diff options
context:
space:
mode:
authorKai Sommerfeld <kso@openoffice.org>2002-09-27 14:17:07 +0000
committerKai Sommerfeld <kso@openoffice.org>2002-09-27 14:17:07 +0000
commitb9bac49c1609a51b41eee9b5001523610f759952 (patch)
tree703cfed4c4bb978d3cf8b595c0bec6e9d46caa16 /ucbhelper/workben
parentd44a3dce20262585671e225d56425f2de0cc3691 (diff)
#82433# - Fixed crash on destroying popup menu.
Diffstat (limited to 'ucbhelper/workben')
-rw-r--r--ucbhelper/workben/ucbexplorer/ucbexplorer.cxx8
1 files changed, 5 insertions, 3 deletions
diff --git a/ucbhelper/workben/ucbexplorer/ucbexplorer.cxx b/ucbhelper/workben/ucbexplorer/ucbexplorer.cxx
index 670e4de66424..4dc1fca2d18a 100644
--- a/ucbhelper/workben/ucbexplorer/ucbexplorer.cxx
+++ b/ucbhelper/workben/ucbexplorer/ucbexplorer.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: ucbexplorer.cxx,v $
*
- * $Revision: 1.10 $
+ * $Revision: 1.11 $
*
- * last change: $Author: kso $ $Date: 2002-03-12 09:49:08 $
+ * last change: $Author: kso $ $Date: 2002-09-27 15:17:07 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -389,6 +389,7 @@ IMPL_LINK( StringInputDialog, OKHdl, Button *, EMPTYARG )
//=========================================================================
IMPL_LINK( StringInputDialog, NameHdl, Edit *, EMPTYARG )
{
+/*
// trim the strings
String aName = m_aNameEdit.GetText();
aName.EraseLeadingChars().EraseTrailingChars();
@@ -402,6 +403,7 @@ IMPL_LINK( StringInputDialog, NameHdl, Edit *, EMPTYARG )
if ( m_aOKBtn.IsEnabled() )
m_aOKBtn.Enable( FALSE );
}
+*/
return 0;
}
@@ -979,8 +981,8 @@ void UcbExplorerTreeListBox::Command( const CommandEvent& rCEvt )
}
}
- delete pMenu;
delete pNewMenu;
+ delete pMenu;
return;
}
}