Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
K
kicad-source-mirror
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
Elphel
kicad-source-mirror
Commits
6417db15
Commit
6417db15
authored
Sep 28, 2010
by
Dick Hollenbeck
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
unconditionally supply some overloads to deal with older wx versions
parent
7176ec25
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
+5
-2
xnode.h
include/xnode.h
+5
-2
No files found.
include/xnode.h
View file @
6417db15
...
...
@@ -66,7 +66,10 @@ public:
*/
virtual
void
FormatContents
(
OUTPUTFORMATTER
*
out
,
int
nestLevel
)
throw
(
IOError
);
#if wxABI_VERSION < 20811 // change the if as needed
// The following functions did not appear in the base class until recently.
// Overload them even if they are present in base class, just to make sure
// they are present in any older base class implementation.
//-----<overloads>---------------------------------------------------------
wxString
GetAttribute
(
const
wxString
&
attrName
,
const
wxString
&
defaultVal
)
const
{
...
...
@@ -84,8 +87,8 @@ public:
{
return
GetProperties
();
}
#endif // wx < 2.8.11
//-----</overloads>--------------------------------------------------------
};
#endif // _XATTR_H_
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment