mirror of https://github.com/GNOME/gimp.git
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:
parent
c714237c6d
commit
f5813eb088
|
@ -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>
|
2003-07-20 Tor Lillqvist <tml@iki.fi>
|
||||||
|
|
||||||
* libgimp/gimp.def
|
* libgimp/gimp.def
|
||||||
|
|
4
NEWS
4
NEWS
|
@ -18,7 +18,7 @@ Overview of Changes in GIMP 1.3.17
|
||||||
- Finally a brush-shaped cursor for all paint tools [Mitch]
|
- Finally a brush-shaped cursor for all paint tools [Mitch]
|
||||||
- Started to integrate new composite functions [Helvetix]
|
- Started to integrate new composite functions [Helvetix]
|
||||||
- Made the style for dockable tabs configurable [Mitch]
|
- 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]
|
- Store grid settings in XCF [Brix]
|
||||||
- Redone assembly checks and run-time checks for CPU features [Sven]
|
- Redone assembly checks and run-time checks for CPU features [Sven]
|
||||||
- Added lots of mnemonics to the menus [Jimmac]
|
- Added lots of mnemonics to the menus [Jimmac]
|
||||||
|
@ -29,7 +29,7 @@ Overview of Changes in GIMP 1.3.17
|
||||||
- Lots of bug fixes
|
- Lots of bug fixes
|
||||||
|
|
||||||
Other contributors:
|
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
|
Overview of Changes in GIMP 1.3.16
|
||||||
|
|
|
@ -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_init (GimpDeviceStatus *editor);
|
||||||
|
|
||||||
static void gimp_device_status_destroy (GtkObject *object);
|
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,
|
static void gimp_device_status_update_entry (GimpDeviceInfo *device_info,
|
||||||
GimpDeviceStatusEntry *entry);
|
GimpDeviceStatusEntry *entry);
|
||||||
|
@ -126,7 +125,6 @@ gimp_device_status_class_init (GimpDeviceStatusClass *klass)
|
||||||
parent_class = g_type_class_peek_parent (klass);
|
parent_class = g_type_class_peek_parent (klass);
|
||||||
|
|
||||||
object_class->destroy = gimp_device_status_destroy;
|
object_class->destroy = gimp_device_status_destroy;
|
||||||
widget_class->unmap = gimp_device_status_unmap;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
|
@ -326,14 +324,6 @@ gimp_device_status_destroy (GtkObject *object)
|
||||||
GTK_OBJECT_CLASS (parent_class)->destroy (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 *
|
GtkWidget *
|
||||||
gimp_device_status_new (Gimp *gimp)
|
gimp_device_status_new (Gimp *gimp)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue