summaryrefslogtreecommitdiffstats
path: root/src/shape-editor.h
diff options
context:
space:
mode:
authorLiam P. White <inkscapebrony@gmail.com>2014-08-31 18:17:26 +0000
committerLiam P. White <inkscapebrony@gmail.com>2014-08-31 18:17:26 +0000
commit1f2d8bc4ce99e970cead4ca96c1859c383a9c043 (patch)
tree07731605bc486145ce5817c5f98a27b0136c7074 /src/shape-editor.h
parentMinor pass of header cleanup (diff)
downloadinkscape-1f2d8bc4ce99e970cead4ca96c1859c383a9c043.tar.gz
inkscape-1f2d8bc4ce99e970cead4ca96c1859c383a9c043.zip
Header cleanup: stop using Glib types where they aren't truly needed. Eases GThread deprecation errors.
(bzr r13341.1.190)
Diffstat (limited to 'src/shape-editor.h')
-rw-r--r--src/shape-editor.h8
1 files changed, 3 insertions, 5 deletions
diff --git a/src/shape-editor.h b/src/shape-editor.h
index df0dbfa3a..d2611b111 100644
--- a/src/shape-editor.h
+++ b/src/shape-editor.h
@@ -12,8 +12,6 @@
*
*/
-#include <glib.h>
-
namespace Inkscape { namespace XML { class Node; } }
class KnotHolder;
@@ -37,10 +35,10 @@ public:
bool knot_mouseover() const;
- static void blockSetItem(bool b) { _blockSetItem = b; } // kludge?
+ static void blockSetItem(bool b) { _blockSetItem = b; } // kludge
- static void event_attr_changed(Inkscape::XML::Node * /*repr*/, gchar const *name, gchar const * /*old_value*/,
- gchar const * /*new_value*/, bool /*is_interactive*/, void *data);
+ static void event_attr_changed(Inkscape::XML::Node * /*repr*/, char const *name, char const * /*old_value*/,
+ char const * /*new_value*/, bool /*is_interactive*/, void *data);
private:
bool has_knotholder();
void reset_item (bool keep_knotholder = true);