3023a44a21
Also: - Fixed capitalization of one method in `LoginDialog.cpp` - Visually improved some strings in `LoginDialog.cpp` - Added utility function getting clipboard content to `Clipboard.cpp` - Made sure to use `crossPlatformCopy` in `UserInfoPopup.cpp`
12 lines
160 B
C++
12 lines
160 B
C++
#pragma once
|
|
|
|
#include <QString>
|
|
|
|
namespace chatterino {
|
|
|
|
void crossPlatformCopy(const QString &text);
|
|
|
|
QString getClipboardText();
|
|
|
|
} // namespace chatterino
|