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

View File

@ -34,7 +34,7 @@ class GLRendererRoster;
class BGLView : public BView {
public:
BGLView(BRect rect, const char *name,
BGLView(BRect rect, char* name,
ulong resizingMode, ulong mode,
ulong options);
virtual ~BGLView();
@ -119,7 +119,7 @@ private:
class BGLScreen : public BWindowScreen {
public:
BGLScreen(const char *name,
BGLScreen(char* name,
ulong screenMode, ulong options,
status_t *error, bool debug=false);
~BGLScreen();

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)
: BView(rect, name, B_FOLLOW_ALL_SIDES, mode | B_WILL_DRAW | B_FRAME_EVENTS), // | B_FULL_UPDATE_ON_RESIZE)
fGc(NULL),
@ -462,7 +462,7 @@ BGLView &BGLView::operator=(const BGLView &v)
// 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)
: BWindowScreen(name, screenMode, error, debug)
{