blob: e9a63c55aa50e7a683b107a03871d9a718ce0cff (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
// SPDX-License-Identifier: GPL-2.0-or-later
/*
* Authors:
* Johan Engelen <goejendaagh@zonnet.nl>
*
* Copyright (C) 2006 Authors
*
* Released under GNU GPL v2+, read the file 'COPYING' for more information.
*/
#include "entry.h"
#include <gtkmm/entry.h>
namespace Inkscape {
namespace UI {
namespace Widget {
Entry::Entry( Glib::ustring const &label, Glib::ustring const &tooltip,
Glib::ustring const &suffix,
Glib::ustring const &icon,
bool mnemonic)
: Labelled(label, tooltip, new Gtk::Entry(), suffix, icon, mnemonic)
{
}
} // namespace Widget
} // namespace UI
} // namespace Inkscape
|