From 975053753ba973f34e6707f86bd9104aa5ea5f52 Mon Sep 17 00:00:00 2001 From: Luca Beltrame Date: Fri, 3 Oct 2014 22:58:56 +0200 Subject: [PATCH] KAction / QAction --- src/mainwindow.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index 9546123..eebc104 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -24,7 +24,7 @@ #include #include -#include +#include #include #include @@ -66,12 +66,12 @@ namespace Danbooru { - KAction* connectAction = new KAction( + QAction * connectAction = new QAction( KIcon(QLatin1String("document-open-remote")), i18n("Connect..."), this); - KAction* fetchAction = new KAction(KIcon(QLatin1String("download")), + QAction * fetchAction = new QAction(KIcon(QLatin1String("download")), i18n("Download"), this); connectAction->setShortcut(KStandardShortcut::open());