Added bakefiles for contrib/utils/convertrc and contrib/utils/wxrcedit
and regenerated makefiles. various compilation and warning fixes for recent changes and for WXWIN_COMPATIBILITY_2_4==0. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@23486 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -19,7 +19,7 @@
|
||||
#endif
|
||||
|
||||
#include "wx/wx.h"
|
||||
#include "wx/xrc/xml.h"
|
||||
#include "wx/xml/xml.h"
|
||||
#include "wx/xrc/xmlres.h"
|
||||
#include "wx/splitter.h"
|
||||
#include "wx/config.h"
|
||||
@@ -396,7 +396,7 @@ void EditorFrame::RefreshTree()
|
||||
static void RecursivelyExpand(wxTreeCtrl *t, wxTreeItemId item)
|
||||
{
|
||||
t->Expand(item);
|
||||
long cookie;
|
||||
void* cookie;
|
||||
wxTreeItemId id = t->GetFirstChild(item, cookie);
|
||||
while (id.IsOk())
|
||||
{
|
||||
@@ -416,7 +416,7 @@ bool EditorFrame::SelectNode(wxXmlNode *node, wxTreeItemId *root)
|
||||
wxTreeItemId item;
|
||||
XmlTreeData *dt;
|
||||
wxXmlNode *nd;
|
||||
long cookie;
|
||||
void* cookie;
|
||||
|
||||
item = m_TreeCtrl->GetFirstChild(*root, cookie);
|
||||
while (item.IsOk())
|
||||
|
Reference in New Issue
Block a user