diff options
| author | Alex Valavanis <valavanisalex@gmail.com> | 2012-05-31 22:20:35 +0000 |
|---|---|---|
| committer | Alex Valavanis <valavanisalex@gmail.com> | 2012-05-31 22:20:35 +0000 |
| commit | a3ecd876fcb2d0c1f21df56eca928779d28003df (patch) | |
| tree | b3464b1814ec297386eff1722282f39681e4b862 /src | |
| parent | Remove unused icon-widget code (diff) | |
| download | inkscape-a3ecd876fcb2d0c1f21df56eca928779d28003df.tar.gz inkscape-a3ecd876fcb2d0c1f21df56eca928779d28003df.zip | |
Gtkmm fixes for sp-widget
(bzr r11447)
Diffstat (limited to 'src')
| -rw-r--r-- | src/widgets/sp-widget.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/widgets/sp-widget.cpp b/src/widgets/sp-widget.cpp index eb07a6d52..58b33a489 100644 --- a/src/widgets/sp-widget.cpp +++ b/src/widgets/sp-widget.cpp @@ -258,7 +258,7 @@ void SPWidgetImpl::sizeRequest(GtkWidget *widget, GtkRequisition *requisition) } #if GTK_CHECK_VERSION(3,0,0) -static void SPWidgetImpl::getPreferredWidth(GtkWidget *widget, gint *minimal_width, gint *natural_width) +void SPWidgetImpl::getPreferredWidth(GtkWidget *widget, gint *minimal_width, gint *natural_width) { GtkRequisition requisition; sizeRequest(widget, &requisition); @@ -266,7 +266,7 @@ static void SPWidgetImpl::getPreferredWidth(GtkWidget *widget, gint *minimal_wid *natural_width = requisition.width; } -static void SPWidgetImpl::getPreferredHeight(GtkWidget *widget, gint *minimal_height, gint *natural_height) +void SPWidgetImpl::getPreferredHeight(GtkWidget *widget, gint *minimal_height, gint *natural_height) { GtkRequisition requisition; sizeRequest(widget, &requisition); |
