diff options
| author | Patrick Storz <eduard.braun2@gmx.de> | 2019-09-25 21:28:10 +0000 |
|---|---|---|
| committer | Patrick Storz <eduard.braun2@gmx.de> | 2019-09-25 21:28:10 +0000 |
| commit | 4df8b7c3ca9156577b0e8146b0050f33ec067bab (patch) | |
| tree | 40e886cf686ac16ebe5dc7bc0e2a73e49e410ef8 /src/extension/prefdialog/parameter-path.cpp | |
| parent | Extensions: Warn for duplicate page names and option names/values (diff) | |
| download | inkscape-4df8b7c3ca9156577b0e8146b0050f33ec067bab.tar.gz inkscape-4df8b7c3ca9156577b0e8146b0050f33ec067bab.zip | |
Extensions: add a few missing calls to Gtk::manage()
Diffstat (limited to 'src/extension/prefdialog/parameter-path.cpp')
| -rw-r--r-- | src/extension/prefdialog/parameter-path.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/extension/prefdialog/parameter-path.cpp b/src/extension/prefdialog/parameter-path.cpp index 76774eb46..2784c0917 100644 --- a/src/extension/prefdialog/parameter-path.cpp +++ b/src/extension/prefdialog/parameter-path.cpp @@ -166,7 +166,7 @@ Gtk::Widget *ParamPath::get_widget(sigc::signal<void> *changeSignal) label->show(); hbox->pack_start(*label, false, false); - ParamPathEntry *textbox = new ParamPathEntry(this, changeSignal); + ParamPathEntry *textbox = Gtk::manage(new ParamPathEntry(this, changeSignal)); textbox->show(); hbox->pack_start(*textbox, true, true); _entry = textbox; |
