summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2014-09-10 18:38:30 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2014-09-10 18:38:30 -0400
commit90059a95040563940c085058f3e972859e8f5d65 (patch)
treed7ecd663d889f16dabffdb2bf33ee1e393836ffc
parentc4f7aae7d5c227650675c17c37ebbd36eab670fb (diff)
move CursorInfo members into public access
-rw-r--r--libs/gtkmm2ext/gtkmm2ext/cursors.h8
1 files 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<std::string,CursorInfo*> Infos;
static Infos infos;
-
- std::string name;
- int x;
- int y;
};
} /* namespace */