]> git.saurik.com Git - wxWidgets.git/commitdiff
add wxSP_THIN_SASH for completeness (#9902)
authorVadim Zeitlin <vadim@wxwidgets.org>
Wed, 3 Sep 2008 20:26:47 +0000 (20:26 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Wed, 3 Sep 2008 20:26:47 +0000 (20:26 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@55446 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/splitter.h
interface/wx/splitter.h

index 0383ecf2d6f0aadc8539f311c4232fd59e2c1684..0dc1c2a9ba3a9a2d2a4e736a7ef0db71a3c7dca2 100644 (file)
@@ -19,6 +19,7 @@
 // ----------------------------------------------------------------------------
 
 #define wxSP_NOBORDER         0x0000
+#define wxSP_THIN_SASH        0x0000    // NB: the default is 3D sash
 #define wxSP_NOSASH           0x0010
 #define wxSP_PERMIT_UNSPLIT   0x0040
 #define wxSP_LIVE_UPDATE      0x0080
index 45ab94555940f7541f70589275f772ed28926395..83c608e6ae84f5486980a94b6888ad8902258463 100644 (file)
     @beginStyleTable
     @style{wxSP_3D}
            Draws a 3D effect border and sash.
+    @style{wxSP_THIN_SASH}
+           Draws a thin sash.
     @style{wxSP_3DSASH}
-           Draws a 3D effect sash.
+           Draws a 3D effect sash (part of default style).
     @style{wxSP_3DBORDER}
            Synonym for wxSP_BORDER.
     @style{wxSP_BORDER}