Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shell
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <mpg@redhat.com>2005-08-17 08:28:34 (GMT)
committer Marco Pesenti Gritti <marco@src.gnome.org>2005-08-17 08:28:34 (GMT)
commit1b943a1adb5fb356a8054af16384141cce8f9779 (patch)
tree15eb54d1d87071647375bedd7738b24313bf9f9f /shell
parentdba517b12cce84d27def17a4b8f44ae847c5048a (diff)
Update for 0.3.4
2005-08-17 Marco Pesenti Gritti <mpg@redhat.com> * NEWS: * configure.ac: Update for 0.3.4 * shell/Makefile.am: Add ev-application-service.xml to extra dist * shell/ev-view.c: (find_page_at_location): Remove unused function (fix warning)
Diffstat (limited to 'shell')
-rw-r--r--shell/Makefile.am6
-rw-r--r--shell/ev-view.c10
2 files changed, 4 insertions, 12 deletions
diff --git a/shell/Makefile.am b/shell/Makefile.am
index 8ab40f9..f756f62 100644
--- a/shell/Makefile.am
+++ b/shell/Makefile.am
@@ -82,8 +82,10 @@ if ENABLE_DBUS
BUILT_SOURCES += ev-application-service.h
endif
-EXTRA_DIST = ev-marshal.list \
- ev-application-service.h
+EXTRA_DIST = ev-marshal.list \
+ ev-application-service.h \
+ ev-application-service.xml
+
ev-marshal.h: ev-marshal.list
glib-genmarshal --prefix=ev_marshal ev-marshal.list --header > ev-marshal.h
diff --git a/shell/ev-view.c b/shell/ev-view.c
index 07fee0d..7fe9955 100644
--- a/shell/ev-view.c
+++ b/shell/ev-view.c
@@ -236,8 +236,6 @@ static void find_page_at_location (EvView
gint *page,
gint *x_offset,
gint *y_offset);
-static void ev_view_queue_draw_page (EvView *view,
- gint page);
/*** Hyperrefs ***/
static EvLink* get_link_at_location (EvView *view,
@@ -1007,14 +1005,6 @@ find_page_at_location (EvView *view,
*page = -1;
}
-static void
-ev_view_queue_draw_page (EvView *view,
- gint page)
-{
- /* FIXME: write */
- gtk_widget_queue_draw (GTK_WIDGET (view));
-}
-
static gboolean
location_in_text (EvView *view,
gdouble x,