Wrong #pragma interface/implementation warning fixes.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@33224 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Włodzimierz Skiba
2005-03-31 19:10:26 +00:00
parent c06dde42fe
commit 694f70fa9c
12 changed files with 36 additions and 24 deletions

View File

@@ -12,6 +12,10 @@
#ifndef _TREE_H_
#define _TREE_H_
#ifdef __GNUG__
#pragma interface "tree.h"
#endif
#include "wx/wx.h"
#include "wx/gizmos/splittree.h"
@@ -44,9 +48,9 @@ public:
protected:
wxRemotelyScrolledTreeCtrl* m_tree;
wxThinSplitterWindow* m_splitter;
wxSplitterScrolledWindow* m_scrolledWindow;
//wxScrolledWindow* m_scrolledWindow;
TestValueWindow* m_valueWindow;
wxSplitterScrolledWindow* m_scrolledWindow;
//wxScrolledWindow* m_scrolledWindow;
TestValueWindow* m_valueWindow;
private:
// any class wishing to process wxWidgets events must use this macro
@@ -67,21 +71,21 @@ enum
#define idTREE_CTRL 2000
#define idSPLITTER_WINDOW 2001
#define idVALUE_WINDOW 2002
#define idMAIN_FRAME 2003
#define idVALUE_WINDOW 2002
#define idMAIN_FRAME 2003
#define idSCROLLED_WINDOW 2004
class TestTree: public wxRemotelyScrolledTreeCtrl
{
DECLARE_CLASS(TestTree)
DECLARE_CLASS(TestTree)
public:
TestTree(wxWindow* parent, wxWindowID id, const wxPoint& pt = wxDefaultPosition,
const wxSize& sz = wxDefaultSize, long style = wxTR_HAS_BUTTONS);
~TestTree();
~TestTree();
DECLARE_EVENT_TABLE()
protected:
wxImageList* m_imageList;
wxImageList* m_imageList;
};
class TestValueWindow: public wxTreeCompanionWindow
@@ -95,7 +99,7 @@ public:
//// Overrides
//// Events
//// Data members
protected: