From kde-commits Wed Apr 23 16:49:54 2008 From: Enrico Ros Date: Wed, 23 Apr 2008 16:49:54 +0000 To: kde-commits Subject: extragear/plasma/applets/notes Message-Id: <1208969394.499485.16877.nullmailer () svn ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-commits&m=120896941217160 SVN commit 800195 by eros: adapt to the new Plasma::svg api (no more image path on the constructor) M +3 -2 notes.cpp --- trunk/extragear/plasma/applets/notes/notes.cpp #800194:800195 @@ -29,9 +29,10 @@ #include Notes::Notes(QObject *parent, const QVariantList &args) - : Plasma::Applet(parent, args), - m_notes_theme("widgets/notes", this) + : Plasma::Applet(parent, args) + , m_notes_theme(this) { + m_notes_theme.setImagePath("widgets/notes"); setHasConfigurationInterface(true); setAcceptDrops(true); setAcceptsHoverEvents(true);