// SPDX-License-Identifier: GPL-2.0-or-later /* * Authors: * Johan Engelen * * Copyright (C) 2006 Authors * * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "entry.h" #include 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