Fixed a couple of typos
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@14016 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -216,7 +216,8 @@ public:
|
|||||||
wxSize operator+(const wxSize& sz) { return wxSize(x + sz.x, y + sz.y); }
|
wxSize operator+(const wxSize& sz) { return wxSize(x + sz.x, y + sz.y); }
|
||||||
wxSize operator-(const wxSize& sz) { return wxSize(x - sz.x, y - sz.y); }
|
wxSize operator-(const wxSize& sz) { return wxSize(x - sz.x, y - sz.y); }
|
||||||
|
|
||||||
// accessors void Set(int xx, int yy) { x = xx; y = yy; }
|
// accessors
|
||||||
|
void Set(int xx, int yy) { x = xx; y = yy; }
|
||||||
void SetWidth(int w) { x = w; }
|
void SetWidth(int w) { x = w; }
|
||||||
void SetHeight(int h) { y = h; }
|
void SetHeight(int h) { y = h; }
|
||||||
|
|
||||||
|
@@ -55,7 +55,7 @@ public:
|
|||||||
#include "wx/os2/popupwin.h"
|
#include "wx/os2/popupwin.h"
|
||||||
#elif __WXGTK__
|
#elif __WXGTK__
|
||||||
#include "wx/gtk/popupwin.h"
|
#include "wx/gtk/popupwin.h"
|
||||||
#ifdef __WXX11__
|
#elif __WXX11__
|
||||||
#include "wx/x11/popupwin.h"
|
#include "wx/x11/popupwin.h"
|
||||||
#elif __WXMGL__
|
#elif __WXMGL__
|
||||||
#include "wx/mgl/popupwin.h"
|
#include "wx/mgl/popupwin.h"
|
||||||
|
Reference in New Issue
Block a user