cropper

diff callbacks.c @ 9:7e1cf00de1df

completely refactored makefile; removed interface.h
author meillo@marmaro.de
date Thu, 20 Mar 2008 20:01:38 +0100
parents b0824876d379
children 5e282003f0c1
line diff
     1.1 --- a/callbacks.c	Thu Mar 20 19:31:44 2008 +0100
     1.2 +++ b/callbacks.c	Thu Mar 20 20:01:38 2008 +0100
     1.3 @@ -3,7 +3,6 @@
     1.4  
     1.5  #include "main.h"
     1.6  #include "callbacks.h"
     1.7 -#include "interface.h"
     1.8  #include "support.h"
     1.9  
    1.10  int image_width;
    1.11 @@ -225,12 +224,12 @@
    1.12  	gtk_main_quit();
    1.13  }
    1.14  
    1.15 -void on_cropper_window_create (GtkObject* object, gpointer user_data) {
    1.16 +void on_cropper_window_create(GtkObject* object, gpointer user_data) {
    1.17  	image_width = gdk_pixbuf_get_width(image_buffer);
    1.18  	image_height = gdk_pixbuf_get_height(image_buffer);
    1.19  }
    1.20  
    1.21 -void on_cropper_window_destroy (GtkObject* object, gpointer user_data) {
    1.22 +void on_cropper_window_destroy(GtkObject* object, gpointer user_data) {
    1.23  	gtk_main_quit();
    1.24  }
    1.25