diff options
| author | luigi1111 <luigi1111w@gmail.com> | 2018-12-01 14:03:51 -0600 |
|---|---|---|
| committer | luigi1111 <luigi1111w@gmail.com> | 2018-12-01 14:03:51 -0600 |
| commit | 72808de1ad3b8b8e9fd5a397e2b615e49af4b202 (patch) | |
| tree | 7963b2ab51c76de68674fdc6ad48b60959f6ef07 /clipboardAdapter.cpp | |
| parent | 6182d85f7ea2d36c8b6b29cf88465b8387671a91 (diff) | |
| parent | 02134c4fc664334be07036d7511c89382376e480 (diff) | |
| download | monzero-gui-72808de1ad3b8b8e9fd5a397e2b615e49af4b202.tar.gz monzero-gui-72808de1ad3b8b8e9fd5a397e2b615e49af4b202.tar.xz monzero-gui-72808de1ad3b8b8e9fd5a397e2b615e49af4b202.zip | |
Merge pull request #1768
02134c4 transfer: paste Payment URL to fill the payment form fields (xiphon)
Diffstat (limited to 'clipboardAdapter.cpp')
| -rw-r--r-- | clipboardAdapter.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/clipboardAdapter.cpp b/clipboardAdapter.cpp index f1920937..b558936a 100644 --- a/clipboardAdapter.cpp +++ b/clipboardAdapter.cpp @@ -38,3 +38,7 @@ void clipboardAdapter::setText(const QString &text) { m_pClipboard->setText(text, QClipboard::Clipboard); m_pClipboard->setText(text, QClipboard::Selection); } + +QString clipboardAdapter::text() const { + return m_pClipboard->text(); +} |
