From 46f4e9db27367208502bf65efa5cbf81a69612c5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonas=20Sundstr=C3=B6m?= Date: Wed, 23 Feb 2011 04:38:57 +0000 Subject: [PATCH] Useless type qualifier on return type. CID 5666. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@40638 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/servers/input/MethodMenuItem.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/servers/input/MethodMenuItem.h b/src/servers/input/MethodMenuItem.h index 0d45684dfe..f2608dbdc3 100644 --- a/src/servers/input/MethodMenuItem.h +++ b/src/servers/input/MethodMenuItem.h @@ -38,7 +38,7 @@ class MethodMenuItem : public BMenuItem { void SetIcon(const uchar *icon); const uchar *Icon() { return(uchar *)fIcon.Bits(); }; - const int32 Cookie() { return fCookie; }; + int32 Cookie() { return fCookie; }; private: BBitmap fIcon; int32 fCookie;