From 1d125708f8f25a5f89562e9f808751690ecdbf88 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Axel=20D=C3=B6rfler?= Date: Tue, 14 Mar 2006 23:17:21 +0000 Subject: [PATCH] Added an empty implementation of the shift_color() function - BeIDE needs this one, maybe we should find out what it does, make it public and document it. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@16801 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/kits/interface/InterfaceDefs.cpp | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/kits/interface/InterfaceDefs.cpp b/src/kits/interface/InterfaceDefs.cpp index 82e7cfac6c..53061000ec 100644 --- a/src/kits/interface/InterfaceDefs.cpp +++ b/src/kits/interface/InterfaceDefs.cpp @@ -765,6 +765,16 @@ tint_color(rgb_color color, float tint) } +rgb_color shift_color(rgb_color color, float shift); + +rgb_color +shift_color(rgb_color color, float shift) +{ + // TODO: dunno what this is supposed to do, but BeIDE expects it to be there... + return color; +} + + static status_t load_menu_settings(menu_info &into) {