projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
fix memory leak
[wxWidgets.git]
/
src
/
xrc
/
xh_odcombo.cpp
diff --git
a/src/xrc/xh_odcombo.cpp
b/src/xrc/xh_odcombo.cpp
index ffd08373efa69719b2c0f0a62f3733d09afb3ebd..fa4503ff6400cfb8efb5b79d79186e13eed0c263 100644
(file)
--- a/
src/xrc/xh_odcombo.cpp
+++ b/
src/xrc/xh_odcombo.cpp
@@
-52,14
+52,6
@@
wxObject *wxOwnerDrawnComboBoxXmlHandler::DoCreateResource()
// need to build the list of strings from children
m_insideBox = true;
CreateChildrenPrivately(NULL, GetParamNode(wxT("content")));
// need to build the list of strings from children
m_insideBox = true;
CreateChildrenPrivately(NULL, GetParamNode(wxT("content")));
- wxString *strings = (wxString *) NULL;
- if (strList.GetCount() > 0)
- {
- strings = new wxString[strList.GetCount()];
- int count = strList.GetCount();
- for (int i = 0; i < count; i++)
- strings[i]=strList[i];
- }
XRC_MAKE_INSTANCE(control, wxOwnerDrawnComboBox)
XRC_MAKE_INSTANCE(control, wxOwnerDrawnComboBox)
@@
-67,24
+59,21
@@
wxObject *wxOwnerDrawnComboBoxXmlHandler::DoCreateResource()
GetID(),
GetText(wxT("value")),
GetPosition(), GetSize(),
GetID(),
GetText(wxT("value")),
GetPosition(), GetSize(),
- strList.GetCount(),
- strings,
+ strList,
GetStyle(),
wxDefaultValidator,
GetName());
GetStyle(),
wxDefaultValidator,
GetName());
- wxSize
ButtonSize
=GetSize(wxT("buttonsize"));
+ wxSize
sizeBtn
=GetSize(wxT("buttonsize"));
- if (
ButtonSize
!= wxDefaultSize)
-
control->SetButtonPosition(ButtonSize.GetWidth(), ButtonSize
.GetHeight());
+ if (
sizeBtn
!= wxDefaultSize)
+
control->SetButtonPosition(sizeBtn.GetWidth(), sizeBtn
.GetHeight());
if (selection != -1)
control->SetSelection(selection);
SetupWindow(control);
if (selection != -1)
control->SetSelection(selection);
SetupWindow(control);
- if (strings != NULL)
- delete[] strings;
strList.Clear(); // dump the strings
return control;
strList.Clear(); // dump the strings
return control;
@@
-97,7
+86,7
@@
wxObject *wxOwnerDrawnComboBoxXmlHandler::DoCreateResource()
// add to the list
wxString str = GetNodeContent(m_node);
if (m_resource->GetFlags() & wxXRC_USE_LOCALE)
// add to the list
wxString str = GetNodeContent(m_node);
if (m_resource->GetFlags() & wxXRC_USE_LOCALE)
- str = wxGetTranslation(str);
+ str = wxGetTranslation(str
, m_resource->GetDomain()
);
strList.Add(str);
return NULL;
strList.Add(str);
return NULL;
@@
-106,7
+95,7
@@
wxObject *wxOwnerDrawnComboBoxXmlHandler::DoCreateResource()
bool wxOwnerDrawnComboBoxXmlHandler::CanHandle(wxXmlNode *node)
{
bool wxOwnerDrawnComboBoxXmlHandler::CanHandle(wxXmlNode *node)
{
-#if wx
ABI_VERSION >= 20700
+#if wx
CHECK_VERSION(2,7,0)
return (IsOfClass(node, wxT("wxOwnerDrawnComboBox")) ||
(m_insideBox && node->GetName() == wxT("item")));
return (IsOfClass(node, wxT("wxOwnerDrawnComboBox")) ||
(m_insideBox && node->GetName() == wxT("item")));
@@
-114,12
+103,12
@@
bool wxOwnerDrawnComboBoxXmlHandler::CanHandle(wxXmlNode *node)
#else
// Avoid GCC bug - this fails on certain GCC 3.3 and 3.4 builds for an unknown reason
#else
// Avoid GCC bug - this fails on certain GCC 3.3 and 3.4 builds for an unknown reason
-// it is believed to be related to the fact IsOfClass is inline, and node->Get
PropVal
+// it is believed to be related to the fact IsOfClass is inline, and node->Get
Attribute
// gets passed an invalid "this" pointer. On 2.7, the function is out of line, so the
// above should work fine. This code is left in here so this file can easily be used
// in a version backported to 2.6. All we are doing here is expanding the macro
// gets passed an invalid "this" pointer. On 2.7, the function is out of line, so the
// above should work fine. This code is left in here so this file can easily be used
// in a version backported to 2.6. All we are doing here is expanding the macro
- bool fOurClass = node->Get
PropVal
(wxT("class"), wxEmptyString) == wxT("wxOwnerDrawnComboBox");
+ bool fOurClass = node->Get
Attribute
(wxT("class"), wxEmptyString) == wxT("wxOwnerDrawnComboBox");
return (fOurClass ||
(m_insideBox && node->GetName() == wxT("item")));
#endif
return (fOurClass ||
(m_insideBox && node->GetName() == wxT("item")));
#endif