~centralelyon2010/inkscape/imagelinks2

« back to all changes in this revision

Viewing changes to src/ui/view/view-widget.h

  • Committer: kidproto
  • Date: 2006-08-25 07:03:19 UTC
  • Revision ID: kidproto@users.sourceforge.net-20060825070319-49nso3fdlwuveifv
peeled back the gboolean code as it hit on some complexity theory principles...
need to rethink and incrementally change gbooleans to bools

Show diffs side-by-side

added added

removed removed

Lines of Context:
61
61
        sp_view_widget_set_view(this, view);
62
62
    }
63
63
 
64
 
    bool shutdown() {
 
64
    gboolean shutdown() {
65
65
        return sp_view_widget_shutdown(this);
66
66
    }
67
67
 
80
80
    /// Virtual method about view size change
81
81
    void (* view_resized) (SPViewWidget *vw, Inkscape::UI::View::View *view, gdouble width, gdouble height);
82
82
 
83
 
    bool (* shutdown) (SPViewWidget *vw);
 
83
    gboolean (* shutdown) (SPViewWidget *vw);
84
84
};
85
85
 
86
86
#endif