Code

Cmake: Fixed the extra -l in the link command, plus a add linking for all sub-libs...
[inkscape.git] / src / ui / view / view-widget.h
index 6c66ff64ee5199de90b5f6bbd96950fdf9dab141..9b5e9c4a83b8aeab193cb79391ee3e0164d8859c 100644 (file)
@@ -61,7 +61,7 @@ class SPViewWidget {
        sp_view_widget_set_view(this, view);
     }
 
-    bool shutdown() {
+    gboolean shutdown() {
        return sp_view_widget_shutdown(this);
     }
 
@@ -80,7 +80,7 @@ class SPViewWidgetClass {
     /// Virtual method about view size change
     void (* view_resized) (SPViewWidget *vw, Inkscape::UI::View::View *view, gdouble width, gdouble height);
 
-    bool (* shutdown) (SPViewWidget *vw);
+    gboolean (* shutdown) (SPViewWidget *vw);
 };
 
 #endif