~ubuntu-branches/ubuntu/precise/nautilus-actions/precise

« back to all changes in this revision

Viewing changes to src/core/na-ipivot-consumer.c

  • Committer: Bazaar Package Importer
  • Author(s): Christine Spang
  • Date: 2011-01-01 20:45:43 UTC
  • mfrom: (3.1.10 sid)
  • Revision ID: james.westby@ubuntu.com-20110101204543-1prwld2snlallc4r
Tags: 3.0.5-1
* New upstream maintenance release.
* Switch to dpkg-source 3.0 (quilt) format
* Fix building with binutils-gold (Closes: #555763)
  - Thanks to Bhavani Shankar for the patch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
 
 * Nautilus Actions
 
2
 * Nautilus-Actions
3
3
 * A Nautilus extension which offers configurable context menu actions.
4
4
 *
5
5
 * Copyright (C) 2005 The GNOME Foundation
6
6
 * Copyright (C) 2006, 2007, 2008 Frederic Ruaudel and others (see AUTHORS)
7
 
 * Copyright (C) 2009, 2010 Pierre Wieser and others (see AUTHORS)
 
7
 * Copyright (C) 2009, 2010, 2011 Pierre Wieser and others (see AUTHORS)
8
8
 *
9
9
 * This Program is free software; you can redistribute it and/or
10
10
 * modify it under the terms of the GNU General Public License as
38
38
 
39
39
/* private interface data
40
40
 */
41
 
struct NAIPivotConsumerInterfacePrivate {
 
41
struct _NAIPivotConsumerInterfacePrivate {
42
42
        void *empty;                                            /* so that gcc -pedantic is happy */
43
43
};
44
44
 
51
51
 
52
52
static gboolean is_notify_allowed( const NAIPivotConsumer *instance );
53
53
 
54
 
/**
 
54
/*
55
55
 * Registers the GType of this interface.
56
56
 */
57
57
GType
127
127
        }
128
128
}
129
129
 
130
 
/**
 
130
/*
131
131
 * na_ipivot_consumer_allow_notify:
132
132
 * @instance: the #NAIPivotConsumer instance.
133
133
 * @allow: whether notifications are allowed for this consumer.
173
173
        }
174
174
}
175
175
 
176
 
/**
 
176
/*
177
177
 * na_ipivot_consumer_notify_of_autosave_changed:
178
178
 * @instance: the #NAIPivotConsumer instance to be notified of the end
179
179
 * of the modifications.
198
198
        }
199
199
}
200
200
 
201
 
/**
 
201
/*
202
202
 * na_ipivot_consumer_notify_of_create_root_menu_changed:
203
203
 * @instance: the #NAIPivotConsumer instance to be notified of the end
204
204
 * of the modifications.
222
222
        }
223
223
}
224
224
 
225
 
/**
 
225
/*
226
226
 * na_ipivot_consumer_notify_of_display_about_changed:
227
227
 * @instance: the #NAIPivotConsumer instance to be notified of the end
228
228
 * of the modifications.
247
247
        }
248
248
}
249
249
 
250
 
/**
 
250
/*
251
251
 * na_ipivot_consumer_notify_of_display_order_changed:
252
252
 * @instance: the #NAIPivotConsumer instance to be notified of the end
253
253
 * of the modifications.
271
271
        }
272
272
}
273
273
 
274
 
/**
 
274
/*
275
275
 * na_ipivot_consumer_notify_of_io_provider_prefs_changed:
276
276
 * @instance: the #NAIPivotConsumer instance to be notified of the modifications.
277
277
 *
296
296
        }
297
297
}
298
298
 
299
 
/**
 
299
/*
300
300
 * na_ipivot_consumer_notify_of_items_changed:
301
301
 * @instance: the #NAIPivotConsumer instance to be notified of the end
302
302
 * of the modifications.
323
323
        }
324
324
}
325
325
 
326
 
/**
 
326
/*
327
327
 * na_ipivot_consumer_notify_of_mandatory_prefs_changed:
328
328
 * @instance: the #NAIPivotConsumer instance to be notified of the modifications.
329
329
 *