From 280bc131fdeaa5671c22403850aadb1a4bfad137 Mon Sep 17 00:00:00 2001 From: DarkWyrm Date: Sun, 5 Oct 2003 22:10:35 +0000 Subject: [PATCH] Forgotten header checkin. :P git-svn-id: file:///srv/svn/repos/haiku/trunk/current@4954 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- headers/private/servers/app/ServerCursor.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/headers/private/servers/app/ServerCursor.h b/headers/private/servers/app/ServerCursor.h index d276630622..ccb3a5ed3e 100644 --- a/headers/private/servers/app/ServerCursor.h +++ b/headers/private/servers/app/ServerCursor.h @@ -28,6 +28,7 @@ #define SERVERCURSOR_H_ #include +#include #include "ServerBitmap.h" class ServerApp; @@ -53,7 +54,7 @@ public: //! Returns the cursor's hot spot BPoint GetHotSpot(void) { return _hotspot; } void SetHotSpot(BPoint pt); - const char *GetAppSignature(void) { return _app_signature; } + const char *GetAppSignature(void) { return _app_signature.String(); } void SetAppSignature(const char *signature); //! Returns the cursor's ID @@ -62,7 +63,7 @@ private: friend class CursorManager; BPoint _hotspot; - char *_app_signature; + BString _app_signature; int32 _token; };