removed an unused function.

2003-07-21  Sven Neumann  <sven@gimp.org>

	* app/widgets/gimpdevicestatus.c: removed an unused function.
This commit is contained in:
Sven Neumann 2003-07-20 22:50:34 +00:00 committed by Sven Neumann
parent c714237c6d
commit f5813eb088
3 changed files with 6 additions and 12 deletions

View File

@ -1,3 +1,7 @@
2003-07-21 Sven Neumann <sven@gimp.org>
* app/widgets/gimpdevicestatus.c: removed an unused function.
2003-07-20 Tor Lillqvist <tml@iki.fi>
* libgimp/gimp.def

4
NEWS
View File

@ -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

View File

@ -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)
{