~ubuntu-branches/debian/sid/gsmartcontrol/sid

« back to all changes in this revision

Viewing changes to src/gsc_text_window.h

  • Committer: Package Import Robot
  • Author(s): gregor herrmann
  • Date: 2012-04-22 14:32:59 UTC
  • Revision ID: package-import@ubuntu.com-20120422143259-8kkyjp554elglaow
Tags: 0.8.6-1.2
* Non-maintainer upload.
* Fix "ftbfs with GCC-4.7": add patch 05_gcc-4.7.patch from Paul Tagliamonte
  (adds this-> qualifier).
  Closes: #667194

Show diffs side-by-side

added added

removed removed

Lines of Context:
126
126
                // by default, delete_event calls hide().
127
127
                bool on_delete_event_before(GdkEventAny* e)
128
128
                {
129
 
                        destroy(this);  // deletes this object and nullifies instance
 
129
                        this->destroy(this);  // deletes this object and nullifies instance
130
130
                        return true;  // event handled, don't call default virtual handler
131
131
                }
132
132
 
184
184
 
185
185
                void on_close_window_button_clicked()
186
186
                {
187
 
                        destroy(this);
 
187
                        this->destroy(this);
188
188
                }
189
189
 
190
190