From f5813eb088fc83f1e3a2078637cb85e5de3d7df2 Mon Sep 17 00:00:00 2001 From: Sven Neumann Date: Sun, 20 Jul 2003 22:50:34 +0000 Subject: [PATCH] removed an unused function. 2003-07-21 Sven Neumann * app/widgets/gimpdevicestatus.c: removed an unused function. --- ChangeLog | 4 ++++ NEWS | 4 ++-- app/widgets/gimpdevicestatus.c | 10 ---------- 3 files changed, 6 insertions(+), 12 deletions(-) diff --git a/ChangeLog b/ChangeLog index 17a27b732e..140c416fe1 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2003-07-21 Sven Neumann + + * app/widgets/gimpdevicestatus.c: removed an unused function. + 2003-07-20 Tor Lillqvist * libgimp/gimp.def diff --git a/NEWS b/NEWS index 6c272fb691..c4e59716cc 100644 --- a/NEWS +++ b/NEWS @@ -18,7 +18,7 @@ Overview of Changes in GIMP 1.3.17 - Finally a brush-shaped cursor for all paint tools [Mitch] - Started to integrate new composite functions [Helvetix] - Made the style for dockable tabs configurable [Mitch] -- Some preparations for text transformations [Sven] +- Some preparations for text transformations and vectors from text [Sven] - Store grid settings in XCF [Brix] - Redone assembly checks and run-time checks for CPU features [Sven] - Added lots of mnemonics to the menus [Jimmac] @@ -29,7 +29,7 @@ Overview of Changes in GIMP 1.3.17 - Lots of bug fixes Other contributors: - Eric Pierce, Joao S. O. Bueno, Alastair M. Robinson + Eric Pierce, Joao S. O. Bueno, Alastair M. Robinson, Tor Lillqvist Overview of Changes in GIMP 1.3.16 diff --git a/app/widgets/gimpdevicestatus.c b/app/widgets/gimpdevicestatus.c index 1d5a8f47c7..29a6e6a619 100644 --- a/app/widgets/gimpdevicestatus.c +++ b/app/widgets/gimpdevicestatus.c @@ -70,7 +70,6 @@ static void gimp_device_status_class_init (GimpDeviceStatusClass *klass); static void gimp_device_status_init (GimpDeviceStatus *editor); static void gimp_device_status_destroy (GtkObject *object); -static void gimp_device_status_unmap (GtkWidget *widget); static void gimp_device_status_update_entry (GimpDeviceInfo *device_info, GimpDeviceStatusEntry *entry); @@ -126,7 +125,6 @@ gimp_device_status_class_init (GimpDeviceStatusClass *klass) parent_class = g_type_class_peek_parent (klass); object_class->destroy = gimp_device_status_destroy; - widget_class->unmap = gimp_device_status_unmap; } static void @@ -326,14 +324,6 @@ gimp_device_status_destroy (GtkObject *object) GTK_OBJECT_CLASS (parent_class)->destroy (object); } -static void -gimp_device_status_unmap (GtkWidget *widget) -{ - GimpDeviceStatus *status = GIMP_DEVICE_STATUS (widget); - - GTK_WIDGET_CLASS (parent_class)->unmap (widget); -} - GtkWidget * gimp_device_status_new (Gimp *gimp) {