]> git.saurik.com Git - wxWidgets.git/commitdiff
resolving conflicts in files I had forgot to commit (sorry)
authorVadim Zeitlin <vadim@wxwidgets.org>
Sun, 8 Feb 2004 22:04:51 +0000 (22:04 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sun, 8 Feb 2004 22:04:51 +0000 (22:04 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@25669 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/msw/listctrl.h
src/msw/pen.cpp

index fa5099ea6c59d80dc365d41bebbca267e6f938c5..2882228178ba8e49db8ffd1d74c3ca45cef1e4e7 100644 (file)
@@ -342,9 +342,6 @@ public:
     // bring the control in sync with current m_windowStyle value
     void UpdateStyle();
 
-    // Gets the WIN32 style and extra style
-    WXDWORD MSWGetStyle(long style, WXDWORD *exstyle) const ;
-
     // Event handlers
     ////////////////////////////////////////////////////////////////////////////
     // Necessary for drawing hrules and vrules, if specified
@@ -362,6 +359,10 @@ protected:
     // free memory taken by all internal data
     void FreeAllInternalData();
 
+    // convert our styles to Windows
+    virtual WXDWORD MSWGetStyle(long style, WXDWORD *exstyle) const;
+
+
     wxTextCtrl*       m_textCtrl;        // The control used for editing a label
     wxImageList *     m_imageListNormal; // The image list for normal icons
     wxImageList *     m_imageListSmall;  // The image list for small icons
@@ -370,7 +371,6 @@ protected:
                       m_ownsImageListSmall,
                       m_ownsImageListState;
 
-    long              m_baseStyle;  // Basic Windows style flags, for recreation purposes
     int               m_colCount;   // Windows doesn't have GetColumnCount so must
                                     // keep track of inserted/deleted columns
     long              m_count;      // Keep track of item count to save calls to
@@ -396,8 +396,6 @@ protected:
     virtual wxListItemAttr *OnGetItemAttr(long item) const;
 
 private:
-    bool DoCreateControl(int x, int y, int w, int h);
-
     // process NM_CUSTOMDRAW notification message
     WXLPARAM OnCustomDraw(WXLPARAM lParam);
 
index a5199247b278c6d972f206dee29a5be51e1e95d6..dc52acc011feda35dc78dabfc112862c1b3e9d64 100644 (file)
@@ -31,7 +31,7 @@
 
 #include "wx/msw/private.h"
 
-int wx2msPenStyle(int wx_style);
+static int wx2msPenStyle(int wx_style);
 
 IMPLEMENT_DYNAMIC_CLASS(wxPen, wxGDIObject)