mirror of
https://github.com/monero-project/monero-gui.git
synced 2026-04-02 18:27:26 -04:00
https://trello.com/c/VpuuPT5L/27-per-transaction-descriptions-should-be-removed-from-dashboard-history-as-discussed https://trello.com/c/wy3nFH3g/30-please-add-ctrl-tab-ctrl-shift-tab-shortcut-keys-to-rotate-between-tabs https://trello.com/c/6Y6kOXsU/44-add-monero-title-to-the-main-window
This commit is contained in:
12
clipboardAdapter.cpp
Normal file
12
clipboardAdapter.cpp
Normal file
@@ -0,0 +1,12 @@
|
||||
#include "clipboardAdapter.h"
|
||||
|
||||
clipboardAdapter::clipboardAdapter(QObject *parent) :
|
||||
QObject(parent)
|
||||
{
|
||||
m_pClipboard = QGuiApplication::clipboard();
|
||||
}
|
||||
|
||||
void clipboardAdapter::setText(const QString &text) {
|
||||
m_pClipboard->setText(text, QClipboard::Clipboard);
|
||||
m_pClipboard->setText(text, QClipboard::Selection);
|
||||
}
|
||||
Reference in New Issue
Block a user