~centralelyon2010/inkscape/imagelinks2

« back to all changes in this revision

Viewing changes to src/dialogs/dialog-events.cpp

  • Committer: kidproto
  • Date: 2006-08-25 07:03:19 UTC
  • Revision ID: kidproto@users.sourceforge.net-20060825070319-49nso3fdlwuveifv
peeled back the gboolean code as it hit on some complexity theory principles...
need to rethink and incrementally change gbooleans to bools

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
* \brief  This function is called to zero the transientize semaphore by a
32
32
*         timeout.
33
33
*/
34
 
bool
 
34
gboolean
35
35
sp_allow_again (gpointer *wd)
36
36
{
37
37
    ((win_data *) wd)->stop = 0;
81
81
 
82
82
 
83
83
 
84
 
bool
 
84
gboolean
85
85
sp_dialog_event_handler (GtkWindow *win, GdkEvent *event, gpointer data)
86
86
{
87
87
 
91
91
        return FALSE;
92
92
    }
93
93
 
94
 
    bool ret = FALSE;
 
94
    gboolean ret = FALSE;
95
95
 
96
96
    switch (event->type) {
97
97
 
210
210
        gtk_widget_show (w);
211
211
}
212
212
 
213
 
bool
 
213
gboolean
214
214
sp_dialog_hide (GtkObject *object, gpointer data)
215
215
{
216
216
    GtkWidget *dlg = (GtkWidget *) data;
223
223
 
224
224
 
225
225
 
226
 
bool
 
226
gboolean
227
227
sp_dialog_unhide (GtkObject *object, gpointer data)
228
228
{
229
229
    GtkWidget *dlg = (GtkWidget *) data;