From kde-commits Sun Aug 23 15:34:42 2009 From: =?utf-8?q?Dar=C3=ADo=20Andr=C3=A9s=20Rodr=C3=ADguez?= X-MARC-Message: https://marc.info/?l=kde-commits&m=125104169507319 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)) {