+ // set the height for simple combo box
+ int SetHeightSimpleComboBox(int nItems) const;
+
+#if wxUSE_DEFERRED_SIZING
+ virtual void MSWEndDeferWindowPos();
+#endif // wxUSE_DEFERRED_SIZING
+
+ // These variables are only used while the drop down is opened.
+ //
+ // The first one contains the item that had been originally selected before
+ // the drop down was opened and the second one the item we should select
+ // when the drop down is closed again.
+ int m_lastAcceptedSelection,
+ m_pendingSelection;
+
+ // the height of the control itself if it was set explicitly or
+ // wxDefaultCoord if it hadn't
+ int m_heightOwn;
+