projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
compilation fix for !MSVC
[wxWidgets.git]
/
include
/
wx
/
mgl
/
pen.h
diff --git
a/include/wx/mgl/pen.h
b/include/wx/mgl/pen.h
index 5bc5dcfaa27b7b89fce0e8d16b3f1e5b83c63c1d..d6e5f02d1d405aab6dd88739c7bb5914737f399b 100644
(file)
--- a/
include/wx/mgl/pen.h
+++ b/
include/wx/mgl/pen.h
@@
-3,7
+3,7
@@
// Purpose:
// Author: Vaclav Slavik
// Id: $Id$
// Purpose:
// Author: Vaclav Slavik
// Id: $Id$
-// Copyright: (c) 2001 SciTech Software, Inc. (www.scitechsoft.com)
+// Copyright: (c) 2001
-2002
SciTech Software, Inc. (www.scitechsoft.com)
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
@@
-35,11
+35,11
@@
class WXDLLEXPORT wxPen;
class WXDLLEXPORT wxPen: public wxGDIObject
{
public:
class WXDLLEXPORT wxPen: public wxGDIObject
{
public:
- wxPen()
;
+ wxPen()
{}
wxPen(const wxColour &colour, int width, int style);
wxPen(const wxBitmap& stipple, int width);
wxPen(const wxPen& pen);
wxPen(const wxColour &colour, int width, int style);
wxPen(const wxBitmap& stipple, int width);
wxPen(const wxPen& pen);
- ~wxPen()
;
+ ~wxPen()
{}
wxPen& operator = (const wxPen& pen);
bool operator == (const wxPen& pen) const;
bool operator != (const wxPen& pen) const;
wxPen& operator = (const wxPen& pen);
bool operator == (const wxPen& pen) const;
bool operator != (const wxPen& pen) const;
@@
-65,11
+65,14
@@
public:
bool Ok() const;
bool Ok() const;
- void Unshare();
-
// implementation:
void* GetPixPattern() const;
// implementation:
void* GetPixPattern() const;
+protected:
+ // ref counting code
+ virtual wxObjectRefData *CreateRefData() const;
+ virtual wxObjectRefData *CloneRefData(const wxObjectRefData *data) const;
+
private:
DECLARE_DYNAMIC_CLASS(wxPen)
};
private:
DECLARE_DYNAMIC_CLASS(wxPen)
};