Browse Source

add virtual destructor

merge-requests/365/head
Jørgen Lien Sellæg 11 years ago
parent
commit
10c3ece12c
  1. 1
      juci/source.h
  2. 2
      juci/window.h

1
juci/source.h

@ -60,6 +60,7 @@ namespace Source {
class View : public Gtk::TextView {
public:
View();
virtual ~View() { }
void ApplyConfig(const Config &config);
void OnLineEdit(const std::vector<Range> &locations,
const Config &config);

2
juci/window.h

@ -12,7 +12,7 @@ public:
Window();
MainConfig& main_config() { return main_config_; }
Gtk::Box window_box_;
virtual ~Window() { }
//private:

Loading…
Cancel
Save