|
|
@ -628,8 +628,11 @@ bool SetStartOnSystemStartup(bool fAutoStart) { return false; }
|
|
|
|
|
|
|
|
|
|
|
|
void setClipboard(const QString& str)
|
|
|
|
void setClipboard(const QString& str)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
QApplication::clipboard()->setText(str, QClipboard::Clipboard);
|
|
|
|
QClipboard* clipboard = QApplication::clipboard();
|
|
|
|
QApplication::clipboard()->setText(str, QClipboard::Selection);
|
|
|
|
clipboard->setText(str, QClipboard::Clipboard);
|
|
|
|
|
|
|
|
if (clipboard->supportsSelection()) {
|
|
|
|
|
|
|
|
clipboard->setText(str, QClipboard::Selection);
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
fs::path qstringToBoostPath(const QString &path)
|
|
|
|
fs::path qstringToBoostPath(const QString &path)
|
|
|
|