From 936aa565a09bf9c371ecc4075280f916710462b7 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Wed, 10 Sep 2014 18:38:30 -0400 Subject: [PATCH] move CursorInfo members into public access --- libs/gtkmm2ext/gtkmm2ext/cursors.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/libs/gtkmm2ext/gtkmm2ext/cursors.h b/libs/gtkmm2ext/gtkmm2ext/cursors.h index d628c13cd8..069684f514 100644 --- a/libs/gtkmm2ext/gtkmm2ext/cursors.h +++ b/libs/gtkmm2ext/gtkmm2ext/cursors.h @@ -13,15 +13,15 @@ class CursorInfo static int load_cursor_info (const std::string& path); static void drop_cursor_info (); + std::string name; + int x; + int y; + private: CursorInfo (const std::string& image_name, int hotspot_x, int hotspot_y); typedef std::map Infos; static Infos infos; - - std::string name; - int x; - int y; }; } /* namespace */