~ubuntu-branches/ubuntu/quantal/gtkmm3.0/quantal

« back to all changes in this revision

Viewing changes to gtk/gtkmm/recentfilter.cc

  • Committer: Package Import Robot
  • Author(s): Sebastien Bacher
  • Date: 2012-03-01 23:42:36 UTC
  • mfrom: (1.1.8)
  • Revision ID: package-import@ubuntu.com-20120301234236-12w6m0hkomhi7h53
Tags: 3.3.16-0ubuntu1
* New upstream version
* debian/control.in: updated the glib requirement

Show diffs side-by-side

added added

removed removed

Lines of Context:
219
219
 
220
220
void RecentFilter::set_name(const Glib::ustring& name)
221
221
{
222
 
gtk_recent_filter_set_name(gobj(), name.c_str()); 
 
222
  gtk_recent_filter_set_name(gobj(), name.c_str()); 
223
223
}
224
224
 
225
225
Glib::ustring RecentFilter::get_name() const
229
229
 
230
230
void RecentFilter::add_mime_type(const Glib::ustring& mime_type)
231
231
{
232
 
gtk_recent_filter_add_mime_type(gobj(), mime_type.c_str()); 
 
232
  gtk_recent_filter_add_mime_type(gobj(), mime_type.c_str()); 
233
233
}
234
234
 
235
235
void RecentFilter::add_pattern(const Glib::ustring& pattern)
236
236
{
237
 
gtk_recent_filter_add_pattern(gobj(), pattern.c_str()); 
 
237
  gtk_recent_filter_add_pattern(gobj(), pattern.c_str()); 
238
238
}
239
239
 
240
240
void RecentFilter::add_pixbuf_formats()
241
241
{
242
 
gtk_recent_filter_add_pixbuf_formats(gobj()); 
 
242
  gtk_recent_filter_add_pixbuf_formats(gobj()); 
243
243
}
244
244
 
245
245
void RecentFilter::add_application(const Glib::ustring& application)
246
246
{
247
 
gtk_recent_filter_add_application(gobj(), application.c_str()); 
 
247
  gtk_recent_filter_add_application(gobj(), application.c_str()); 
248
248
}
249
249
 
250
250
void RecentFilter::add_group(const Glib::ustring& group)
251
251
{
252
 
gtk_recent_filter_add_group(gobj(), group.c_str()); 
 
252
  gtk_recent_filter_add_group(gobj(), group.c_str()); 
253
253
}
254
254
 
255
255
void RecentFilter::add_age(int days)
256
256
{
257
 
gtk_recent_filter_add_age(gobj(), days); 
 
257
  gtk_recent_filter_add_age(gobj(), days); 
258
258
}
259
259
 
260
260
RecentFilterFlags RecentFilter::get_needed() const