Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shell/ev-page-action-widget.c
diff options
context:
space:
mode:
authorCarlos Garcia Campos <carlosgc@gnome.org>2007-02-15 18:04:15 (GMT)
committer Carlos Garcia Campos <carlosgc@src.gnome.org>2007-02-15 18:04:15 (GMT)
commite4a8f3080f3b8c66db8269b5a7cdc844da51cd3c (patch)
treedc8c0dcbdfc17820e8099927a71096888824cd0e /shell/ev-page-action-widget.c
parent73dca3f3fdd7cca8a32974b989c5243bd23f7791 (diff)
Fix compile warnings.
2007-02-15 Carlos Garcia Campos <carlosgc@gnome.org> * shell/ev-page-action-widget.c: * shell/ev-navigation-action.c: * shell/ev-window.c: Fix compile warnings. svn path=/trunk/; revision=2329
Diffstat (limited to 'shell/ev-page-action-widget.c')
-rw-r--r--shell/ev-page-action-widget.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/shell/ev-page-action-widget.c b/shell/ev-page-action-widget.c
index 5cd1054..0212fce 100644
--- a/shell/ev-page-action-widget.c
+++ b/shell/ev-page-action-widget.c
@@ -60,14 +60,14 @@ ev_page_action_widget_set_page_cache (EvPageActionWidget *action_widget,
{
if (action_widget->page_cache != NULL) {
g_object_remove_weak_pointer (G_OBJECT (action_widget->page_cache),
- (gpointer *)&action_widget->page_cache);
+ (gpointer)&action_widget->page_cache);
action_widget->page_cache = NULL;
}
if (page_cache != NULL) {
action_widget->page_cache = page_cache;
g_object_add_weak_pointer (G_OBJECT (page_cache),
- (gpointer *)&action_widget->page_cache);
+ (gpointer)&action_widget->page_cache);
}
}