[gthumb/ext] fixed function call
- From: Paolo Bacchilega <paobac src gnome org>
- To: svn-commits-list gnome org
- Cc:
- Subject: [gthumb/ext] fixed function call
- Date: Sat, 2 Jan 2010 21:41:54 +0000 (UTC)
commit e85143af6e070bb87ce4566f19ed7cc6d90e9ba1
Author: Paolo Bacchilega <paobac src gnome org>
Date: Fri Jan 1 18:07:01 2010 +0100
fixed function call
extensions/image_print/gth-image-print-job.c | 2 +-
gthumb/gth-browser.c | 3 +--
2 files changed, 2 insertions(+), 3 deletions(-)
---
diff --git a/extensions/image_print/gth-image-print-job.c b/extensions/image_print/gth-image-print-job.c
index ae3d96f..de7eba0 100644
--- a/extensions/image_print/gth-image-print-job.c
+++ b/extensions/image_print/gth-image-print-job.c
@@ -1064,7 +1064,7 @@ caption_chooser_changed_cb (GthMetadataChooser *chooser,
gboolean reload_required;
new_caption_attributes = gth_metadata_chooser_get_selection (chooser);
- reload_required = attribute_list_reaload_required (self->priv->caption_attributes, new_caption_attributes);
+ reload_required = attribute_list_reload_required (self->priv->caption_attributes, new_caption_attributes);
g_free (self->priv->caption_attributes);
self->priv->caption_attributes = new_caption_attributes;
eel_gconf_set_string (PREF_IMAGE_PRINT_CAPTION, self->priv->caption_attributes);
diff --git a/gthumb/gth-browser.c b/gthumb/gth-browser.c
index 8776c80..4053399 100644
--- a/gthumb/gth-browser.c
+++ b/gthumb/gth-browser.c
@@ -1101,7 +1101,7 @@ _gth_browser_reload_required (GthBrowser *browser)
old_attributes = g_strdup (_gth_browser_get_list_attributes (browser, FALSE));
new_attributes = _gth_browser_get_list_attributes (browser, TRUE);
- reload_required = attribute_list_reaload_required (old_attributes, new_attributes);
+ reload_required = attribute_list_reload_required (old_attributes, new_attributes);
g_free (old_attributes);
@@ -1924,7 +1924,6 @@ _gth_browser_update_browser_ui (GthBrowser *browser,
g_warning ("ui building failed: %s", error->message);
g_clear_error (&error);
}
- gtk_tool_item_set_is_important (GTK_TOOL_ITEM (gtk_ui_manager_get_widget (browser->priv->ui, "/ToolBar/BrowserCommands/Edit_Metadata")), TRUE);
}
else if (browser->priv->browser_ui_merge_id != 0) {
gtk_ui_manager_remove_ui (browser->priv->ui, browser->priv->browser_ui_merge_id);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]