Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shell/ev-file-monitor.c
diff options
context:
space:
mode:
authorHiroyuki Ikezoe <poincare@ikezoe.net>2009-01-20 23:04:57 (GMT)
committer Hiroyuki Ikezoe <hiikezoe@src.gnome.org>2009-01-20 23:04:57 (GMT)
commit5b09db3c6a81a31077ce710375bfbd397e26dc4a (patch)
treedb05097d49a51442201fd75da7b1510a434c149f /shell/ev-file-monitor.c
parentb966e4e61b28742d2ff84a9e6de8f1d25bdd1335 (diff)
shell/ev-sidebar-links.c
2009-01-21 Hiroyuki Ikezoe <poincare@ikezoe.net> * shell/ev-sidebar-links.c * shell/ev-print-operation.c: * shell/ev-history.c: * shell/ev-file-monitor.c: * shell/ev-window.c: * shell/ev-password-view.c: * shell/ev-sidebar-thumbnails.c: * shell/ev-sidebar-attachments.c: * libview/ev-pixbuf-cache.c: * libview/ev-view.c: Remove needless G_OBJECT from g_signal_connect. Bug #568386. svn path=/trunk/; revision=3370
Diffstat (limited to 'shell/ev-file-monitor.c')
-rw-r--r--shell/ev-file-monitor.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/ev-file-monitor.c b/shell/ev-file-monitor.c
index 3db0e78..2b06d34 100644
--- a/shell/ev-file-monitor.c
+++ b/shell/ev-file-monitor.c
@@ -155,7 +155,7 @@ ev_file_monitor_new (const gchar *uri)
file = g_file_new_for_uri (uri);
ev_monitor->priv->monitor = g_file_monitor_file (file, G_FILE_MONITOR_NONE, NULL, &error);
if (ev_monitor->priv->monitor) {
- g_signal_connect (G_OBJECT (ev_monitor->priv->monitor), "changed",
+ g_signal_connect (ev_monitor->priv->monitor, "changed",
G_CALLBACK (ev_file_monitor_changed_cb), ev_monitor);
} else if (error) {
g_warning ("%s", error->message);