diff options
| author | Alex Valavanis <valavanisalex@gmail.com> | 2012-01-03 00:07:54 +0000 |
|---|---|---|
| committer | Alex Valavanis <valavanisalex@gmail.com> | 2012-01-03 00:07:54 +0000 |
| commit | c0ae0bee37a04c6e79dbe0de00f173c80917ffbe (patch) | |
| tree | 175bfaf44d18be4d17ebd3803cb0ec7314c2e37e /src/dialogs/export.cpp | |
| parent | add buttons for node adding at extrema (diff) | |
| download | inkscape-c0ae0bee37a04c6e79dbe0de00f173c80917ffbe.tar.gz inkscape-c0ae0bee37a04c6e79dbe0de00f173c80917ffbe.zip | |
Cleanup GSEAL issues and deprecated GtkTooltips
(bzr r10826)
Diffstat (limited to 'src/dialogs/export.cpp')
| -rw-r--r-- | src/dialogs/export.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dialogs/export.cpp b/src/dialogs/export.cpp index 4cad2c8a1..51c16bf3b 100644 --- a/src/dialogs/export.cpp +++ b/src/dialogs/export.cpp @@ -1022,7 +1022,7 @@ create_progress_dialog (GtkObject *base, gchar *progress_text) { gtk_progress_bar_set_orientation ( (GtkProgressBar *) prg, GTK_PROGRESS_LEFT_TO_RIGHT); - gtk_box_pack_start ((GtkBox *) ((GtkDialog *) dlg)->vbox, + gtk_box_pack_start ((GtkBox *) gtk_dialog_get_content_area((GtkDialog *) dlg), prg, FALSE, FALSE, 4 ); btn = gtk_dialog_add_button ( GTK_DIALOG (dlg), GTK_STOCK_CANCEL, @@ -1992,7 +1992,7 @@ static float sp_export_value_get( GtkObject *base, const gchar *key ) adj = (GtkAdjustment *)g_object_get_data (G_OBJECT(base), key); - return adj->value; + return gtk_adjustment_get_value (adj); } /** |
