mirror of
https://github.com/nextcloud/desktop.git
synced 2024-12-20 12:52:06 +03:00
16 lines
444 B
Text
16 lines
444 B
Text
#include <QString>
|
|
#include <QDebug>
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
namespace OCC {
|
|
|
|
// https://github.com/owncloud/client/issues/3300
|
|
void copyToPasteboard(const QString &string)
|
|
{
|
|
qDebug() << Q_FUNC_INFO << string;
|
|
[[NSPasteboard generalPasteboard] clearContents];
|
|
[[NSPasteboard generalPasteboard] setString:[NSString stringWithUTF8String:string.toUtf8().data()]
|
|
forType:NSStringPboardType];
|
|
}
|
|
|
|
}
|