summaryrefslogtreecommitdiff
path: root/EventDispatcher.h
diff options
context:
space:
mode:
Diffstat (limited to 'EventDispatcher.h')
-rw-r--r--EventDispatcher.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/EventDispatcher.h b/EventDispatcher.h
index b597c90..77b1948 100644
--- a/EventDispatcher.h
+++ b/EventDispatcher.h
@@ -44,7 +44,7 @@ class EventDispatcher : public QObject
/// \brief return if need be close
bool shouldBeClosed();
#if defined(Q_OS_WIN32) || defined(Q_OS_MAC)
- static QString GetOSDisplayString();
+ static std::string GetOSDisplayString();
#endif
public slots:
/// \brief Quit ultracopier
@@ -67,7 +67,7 @@ class EventDispatcher : public QObject
struct CoreSession
{
Core * CoreWindow;
- QList<int> copyMoveEventIdManaged;
+ std::vector<int> copyMoveEventIdManaged;
};
/// \brief the systray icon
SystrayIcon *backgroundIcon;