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

« back to all changes in this revision

Viewing changes to gtk/gtkmm/targetlist.h

  • Committer: Package Import Robot
  • Author(s): Robert Ancell
  • Date: 2012-09-28 09:25:06 UTC
  • mfrom: (1.1.14)
  • Revision ID: package-import@ubuntu.com-20120928092506-9h63ais5o750a8sk
Tags: 3.5.13-0ubuntu1
* New upstream release
* debian/control:
  - Bump build-depends on libglibmm-2.4-dev, libgtk-3-dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
37
37
 
38
38
class TargetList
39
39
{
40
 
  //GtkTargetList is actually registered as a boxed type, but it has custom 
 
40
  //GtkTargetList is actually registered as a boxed type, but it has custom
41
41
  //reference-counting instead of copy/free functions, so we use it via RefPtr.
42
42
  public:
43
43
#ifndef DOXYGEN_SHOULD_SKIP_THIS
68
68
protected:
69
69
  // Do not derive this.  Gtk::TargetList can neither be constructed nor deleted.
70
70
  TargetList();
71
 
  void operator delete(void*, size_t);
 
71
  void operator delete(void*, std::size_t);
72
72
 
73
73
private:
74
74
  // noncopyable
78
78
 
79
79
public:
80
80
  static Glib::RefPtr<Gtk::TargetList> create(const std::vector<TargetEntry>& targets);
81
 
  
 
81
 
82
82
 
83
83
  /** Appends another target to a Gtk::TargetList.
84
84
   * @param target The interned atom representing the target.