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

« back to all changes in this revision

Viewing changes to gtk/gtkmm/targetlist.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:
116
116
 
117
117
void TargetList::add(const Glib::ustring& target, TargetFlags flags, guint info)
118
118
{
119
 
gtk_target_list_add(gobj(), Gdk::AtomString::to_c_type(target), (guint)(flags), info); 
 
119
  gtk_target_list_add(gobj(), Gdk::AtomString::to_c_type(target), (guint)(flags), info); 
120
120
}
121
121
 
122
122
void TargetList::remove(const Glib::ustring& target)
123
123
{
124
 
gtk_target_list_remove(gobj(), Gdk::AtomString::to_c_type(target)); 
 
124
  gtk_target_list_remove(gobj(), Gdk::AtomString::to_c_type(target)); 
125
125
}
126
126
 
127
127
bool TargetList::find(const Glib::ustring& target, guint* info) const