Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/keepassxreboot/keepassxc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/Clipboard.h')
-rw-r--r--src/gui/Clipboard.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/gui/Clipboard.h b/src/gui/Clipboard.h
index e0a16d26d..6f8ff9ace 100644
--- a/src/gui/Clipboard.h
+++ b/src/gui/Clipboard.h
@@ -19,6 +19,9 @@
#define KEEPASSX_CLIPBOARD_H
#include <QObject>
+#ifdef Q_OS_MAC
+#include "core/MacPasteboard.h"
+#endif
class QTimer;
@@ -43,6 +46,9 @@ private:
static Clipboard* m_instance;
QTimer* m_timer;
+#ifdef Q_OS_MAC
+ QScopedPointer<MacPasteboard> m_pasteboard;
+#endif
QString m_lastCopied;
};