projects
/
wxWidgets.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c072c75
)
IsStandard needs to check m_type, not m_format
author
Robin Dunn
<robin@alldunn.com>
Sat, 15 Apr 2006 06:53:56 +0000
(06:53 +0000)
committer
Robin Dunn
<robin@alldunn.com>
Sat, 15 Apr 2006 06:53:56 +0000
(06:53 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38737
c3d73ce0
-8a6f-49c7-b76d-
6d57e0e08775
include/wx/mac/carbon/dataform.h
patch
|
blob
|
blame
|
history
diff --git
a/include/wx/mac/carbon/dataform.h
b/include/wx/mac/carbon/dataform.h
index 43dbd7bffb75fdf1ce776ee0f8f52e4871137e7a..6de68218ad2cd1a4e02af4119d3f98068c691686 100644
(file)
--- a/
include/wx/mac/carbon/dataform.h
+++ b/
include/wx/mac/carbon/dataform.h
@@
-53,7
+53,8
@@
public:
void SetType( wxDataFormatId type );
// returns true if the format is one of those defined in wxDataFormatId
- bool IsStandard() const { return m_format > 0 && m_format < wxDF_PRIVATE; }
+ bool IsStandard() const { return m_type > 0 && m_type < wxDF_PRIVATE; }
+
private:
wxDataFormatId m_type;
NativeFormat m_format;