/* * Authors: * Johan Engelen * * Copyright (C) 2006 Authors * * Released under GNU GPL. Read the file 'COPYING' for more information */ #ifdef HAVE_CONFIG_H #include #endif #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