SVN commit 1014685 by darioandres: - Do not use the deprecated "KUrl KUrl::fromPathOrUrl" M +1 -1 notes.cpp --- branches/KDE/4.3/kdeplasma-addons/applets/notes/notes.cpp #1014684:1014685 @@ -272,7 +272,7 @@ m_layout->addItem(m_textEdit); if (args.count() > 0) { - KUrl url = KUrl::fromPathOrUrl(args.at(0).toString()); + KUrl url = KUrl(args.at(0).toString()); QFile f(url.path()); if (f.open(QIODevice::ReadOnly)) {