Code

noop: reverted one line of commit #17642 (it's safe to call g_free with NULL)
[inkscape.git] / src / ui / dialog / layer-editor.cpp
1 /**
2  * \brief Layer Editor dialog
3  *
4  * Authors:
5  *   Bryce W. Harrington <bryce@bryceharrington.org>
6  *
7  * Copyright (C) 2004, 2005 Authors
8  *
9  * Released under GNU GPL.  Read the file 'COPYING' for more information.
10  */
12 #ifdef HAVE_CONFIG_H
13 # include <config.h>
14 #endif
16 #include "layer-editor.h"
17 #include "verbs.h"
19 namespace Inkscape {
20 namespace UI {
21 namespace Dialog {
24 LayerEditor::LayerEditor() 
25     : UI::Widget::Panel("", "dialogs.layers", SP_VERB_NONE)
26 {
27     // TODO:  Insert widgets
29     show_all_children();
30 }
32 LayerEditor::~LayerEditor() 
33 {
34 }
36 } // namespace Dialog
37 } // namespace UI
38 } // namespace Inkscape
40 /*
41   Local Variables:
42   mode:c++
43   c-file-style:"stroustrup"
44   c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
45   indent-tabs-mode:nil
46   fill-column:99
47   End:
48 */
49 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :