Revert bin compat break from r32267.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@32280 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Rene Gollent
2009-08-12 14:39:26 +00:00
parent a5079edc04
commit db341f3691
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -34,7 +34,7 @@ class GLRendererRoster;
class BGLView : public BView { class BGLView : public BView {
public: public:
BGLView(BRect rect, const char *name, BGLView(BRect rect, char* name,
ulong resizingMode, ulong mode, ulong resizingMode, ulong mode,
ulong options); ulong options);
virtual ~BGLView(); virtual ~BGLView();
@@ -119,7 +119,7 @@ private:
class BGLScreen : public BWindowScreen { class BGLScreen : public BWindowScreen {
public: public:
BGLScreen(const char *name, BGLScreen(char* name,
ulong screenMode, ulong options, ulong screenMode, ulong options,
status_t *error, bool debug=false); status_t *error, bool debug=false);
~BGLScreen(); ~BGLScreen();
+2 -2
View File
@@ -55,7 +55,7 @@ struct glview_direct_info {
}; };
BGLView::BGLView(BRect rect, const char *name, ulong resizingMode, ulong mode, BGLView::BGLView(BRect rect, char* name, ulong resizingMode, ulong mode,
ulong options) ulong options)
: BView(rect, name, B_FOLLOW_ALL_SIDES, mode | B_WILL_DRAW | B_FRAME_EVENTS), // | B_FULL_UPDATE_ON_RESIZE) : BView(rect, name, B_FOLLOW_ALL_SIDES, mode | B_WILL_DRAW | B_FRAME_EVENTS), // | B_FULL_UPDATE_ON_RESIZE)
fGc(NULL), fGc(NULL),
@@ -462,7 +462,7 @@ BGLView &BGLView::operator=(const BGLView &v)
// TODO: implement BGLScreen class... // TODO: implement BGLScreen class...
BGLScreen::BGLScreen(const char *name, ulong screenMode, ulong options, BGLScreen::BGLScreen(char* name, ulong screenMode, ulong options,
status_t *error, bool debug) status_t *error, bool debug)
: BWindowScreen(name, screenMode, error, debug) : BWindowScreen(name, screenMode, error, debug)
{ {