mirror of
https://invent.kde.org/system/dolphin
synced 2024-11-05 18:47:12 +00:00
Fix compile/link
svn path=/trunk/KDE/kdebase/kdepasswd/; revision=468184
This commit is contained in:
parent
35e4caa61b
commit
7738ec74e5
1 changed files with 3 additions and 3 deletions
|
@ -48,7 +48,7 @@
|
|||
#include <kprocess.h>
|
||||
#include <kio/netaccess.h>
|
||||
#include <kurl.h>
|
||||
#include <kurldrag.h>
|
||||
#include <k3urldrag.h>
|
||||
|
||||
#include "settings.h"
|
||||
#include "pass.h"
|
||||
|
@ -292,7 +292,7 @@ bool KCMUserAccount::eventFilter(QObject *, QEvent *e)
|
|||
if (e->type() == QEvent::DragEnter)
|
||||
{
|
||||
QDragEnterEvent *ee = (QDragEnterEvent *) e;
|
||||
ee->accept( KURLDrag::canDecode(ee) );
|
||||
ee->accept( K3URLDrag::canDecode(ee) );
|
||||
return true;
|
||||
}
|
||||
|
||||
|
@ -323,7 +323,7 @@ inline KURL *KCMUserAccount::decodeImgDrop(QDropEvent *e, QWidget *wdg)
|
|||
{
|
||||
KURL::List uris;
|
||||
|
||||
if (KURLDrag::decode(e, uris) && (uris.count() > 0))
|
||||
if (K3URLDrag::decode(e, uris) && (uris.count() > 0))
|
||||
{
|
||||
KURL *url = new KURL(uris.first());
|
||||
|
||||
|
|
Loading…
Reference in a new issue