summaryrefslogtreecommitdiff
path: root/toolkit
diff options
context:
space:
mode:
authorMalte Timmermann <mt@openoffice.org>2001-04-09 11:01:20 +0000
committerMalte Timmermann <mt@openoffice.org>2001-04-09 11:01:20 +0000
commit1c8fe2fdee0b35679456021bff4f41936299c225 (patch)
treeec2c693ce2e7c2bdbade928c63c1884fbb7670df /toolkit
parent8d7450bfd55acf34eb2770b6431acc97687597d3 (diff)
#85873# SimpleMode für ListBox
Diffstat (limited to 'toolkit')
-rw-r--r--toolkit/source/awt/vclxtoolkit.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/toolkit/source/awt/vclxtoolkit.cxx b/toolkit/source/awt/vclxtoolkit.cxx
index 2730bdb8112a..7f6e56036967 100644
--- a/toolkit/source/awt/vclxtoolkit.cxx
+++ b/toolkit/source/awt/vclxtoolkit.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: vclxtoolkit.cxx,v $
*
- * $Revision: 1.7 $
+ * $Revision: 1.8 $
*
- * last change: $Author: mt $ $Date: 2001-03-16 14:45:13 $
+ * last change: $Author: mt $ $Date: 2001-04-09 12:01:20 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -756,7 +756,7 @@ Window* VCLXToolkit::ImplCreateWindow( VCLXWindow** ppNewComp,
*ppNewComp = new VCLXMessageBox;
break;
case WINDOW_LISTBOX:
- pNewWindow = new ListBox( pParent, nWinBits );
+ pNewWindow = new ListBox( pParent, nWinBits|WB_SIMPLEMODE );
((ListBox*)pNewWindow)->EnableAutoSize( sal_False );
*ppNewComp = new VCLXListBox;
break;