made r5 compatible
added virtual on destructors git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@16182 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -1,6 +1,13 @@
|
|||||||
SubDir HAIKU_TOP src apps stylededit ;
|
SubDir HAIKU_TOP src apps stylededit ;
|
||||||
|
|
||||||
|
SetSubDirSupportedPlatformsBeOSCompatible ;
|
||||||
|
|
||||||
UsePrivateHeaders textencoding ;
|
UsePrivateHeaders textencoding ;
|
||||||
|
if $(TARGET_PLATFORM) != haiku {
|
||||||
|
UseHeaders [ FDirName $(HAIKU_TOP) headers os support ] : true ;
|
||||||
|
UseHeaders [ FDirName $(HAIKU_TOP) headers posix ] : true ;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
local styled_edit_rsrc =
|
local styled_edit_rsrc =
|
||||||
[ FGristFiles StyledEdit.rsrc ]
|
[ FGristFiles StyledEdit.rsrc ]
|
||||||
|
|||||||
@@ -8,7 +8,7 @@
|
|||||||
class StyledEditView : public BTextView {
|
class StyledEditView : public BTextView {
|
||||||
public:
|
public:
|
||||||
StyledEditView(BRect viewframe, BRect textframe, BHandler *handler);
|
StyledEditView(BRect viewframe, BRect textframe, BHandler *handler);
|
||||||
~StyledEditView();
|
virtual ~StyledEditView();
|
||||||
|
|
||||||
virtual void Select(int32 start, int32 finish);
|
virtual void Select(int32 start, int32 finish);
|
||||||
virtual void FrameResized(float width, float height);
|
virtual void FrameResized(float width, float height);
|
||||||
|
|||||||
@@ -17,7 +17,7 @@ class StyledEditWindow
|
|||||||
public:
|
public:
|
||||||
StyledEditWindow(BRect frame, int32 id, uint32 encoding = 0);
|
StyledEditWindow(BRect frame, int32 id, uint32 encoding = 0);
|
||||||
StyledEditWindow(BRect frame, entry_ref *ref, uint32 encoding = 0);
|
StyledEditWindow(BRect frame, entry_ref *ref, uint32 encoding = 0);
|
||||||
~StyledEditWindow();
|
virtual ~StyledEditWindow();
|
||||||
|
|
||||||
virtual void Quit();
|
virtual void Quit();
|
||||||
virtual bool QuitRequested();
|
virtual bool QuitRequested();
|
||||||
|
|||||||
Reference in New Issue
Block a user