diff --git a/src/apps/clock/cl_view.cpp b/src/apps/clock/cl_view.cpp index 00edde3b7d..ea702a1961 100644 --- a/src/apps/clock/cl_view.cpp +++ b/src/apps/clock/cl_view.cpp @@ -20,7 +20,7 @@ #include -TOffscreenView::TOffscreenView(BRect frame, char *name, short mRadius, +TOffscreenView::TOffscreenView(BRect frame, const char *name, short mRadius, short hRadius, short offset, long face, bool show) : BView(frame, name, B_FOLLOW_NONE, B_WILL_DRAW), fHours(0), @@ -168,7 +168,7 @@ TOffscreenView::~TOffscreenView() // #pragma mark - -TOnscreenView::TOnscreenView(BRect rect, char *title, short mRadius, +TOnscreenView::TOnscreenView(BRect rect, const char *title, short mRadius, short hRadius, short offset) : BView(rect, title, B_FOLLOW_NONE, B_WILL_DRAW | B_PULSE_NEEDED | B_DRAW_ON_CHILDREN), diff --git a/src/apps/clock/cl_view.h b/src/apps/clock/cl_view.h index b9af6d523a..9dac1c7d22 100644 --- a/src/apps/clock/cl_view.h +++ b/src/apps/clock/cl_view.h @@ -16,7 +16,7 @@ class BMessage; class TOffscreenView : public BView { public: - TOffscreenView(BRect frame, char *name, short mRadius, + TOffscreenView(BRect frame, const char *name, short mRadius, short hRadius, short offset, long face, bool show); virtual ~TOffscreenView(); @@ -46,7 +46,7 @@ class TOffscreenView : public BView { class TOnscreenView : public BView { public: - TOnscreenView(BRect frame, char *name, + TOnscreenView(BRect frame, const char *name, short mRadius, short hRadius, short offset); TOnscreenView(BMessage *data); virtual ~TOnscreenView();