Browse Source

Bitcoin-Qt: fix copy via context-menu broken

- as QClipboard::Selection isn't available on Windows ensure that the
  correct mode is called, but sill allow selection for e.g. X11
- start conversion from QCoreApplication::instance() to qApp in
  guiutil.cpp (I intend to harmonize this all over the source with my Qt5
  compatibility pull)
0.8
Philip Kaufmann 12 years ago
parent
commit
39ee86257c
  1. 9
      src/qt/guiutil.cpp

9
src/qt/guiutil.cpp

@ -160,8 +160,10 @@ void copyEntryData(QAbstractItemView *view, int column, int role) @@ -160,8 +160,10 @@ void copyEntryData(QAbstractItemView *view, int column, int role)
if(!selection.isEmpty())
{
// Copy first item
QApplication::clipboard()->setText(selection.at(0).data(role).toString(),QClipboard::Selection);
// Copy first item (global clipboard)
qApp->clipboard()->setText(selection.at(0).data(role).toString(), QClipboard::Clipboard);
// Copy first item (global mouse selection for e.g. X11 - NOP on Windows)
qApp->clipboard()->setText(selection.at(0).data(role).toString(), QClipboard::Selection);
}
}
@ -213,7 +215,7 @@ QString getSaveFileName(QWidget *parent, const QString &caption, @@ -213,7 +215,7 @@ QString getSaveFileName(QWidget *parent, const QString &caption,
Qt::ConnectionType blockingGUIThreadConnection()
{
if(QThread::currentThread() != QCoreApplication::instance()->thread())
if(QThread::currentThread() != qApp->thread())
{
return Qt::BlockingQueuedConnection;
}
@ -457,4 +459,3 @@ void HelpMessageBox::showOrPrint() @@ -457,4 +459,3 @@ void HelpMessageBox::showOrPrint()
}
} // namespace GUIUtil

Loading…
Cancel
Save