diff options
| author | Wladimir J. van der Laan <[email protected]> | 2019-12-09 11:07:16 +0100 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2019-12-09 11:12:20 +0100 |
| commit | 67f36e0b2ce0f99b90578e7e1dd9e0624026bcfa (patch) | |
| tree | bf0d06b2a73802965d643d476950776f8b962f92 /src/qt/openuridialog.cpp | |
| parent | Merge #17676: depends: don't use OpenGL in Qt on macOS (diff) | |
| download | discoin-67f36e0b2ce0f99b90578e7e1dd9e0624026bcfa.tar.xz discoin-67f36e0b2ce0f99b90578e7e1dd9e0624026bcfa.zip | |
gui: Move static placeholder texts to forms
There was an issue around the time of Qt 4.6 when placeholder text was
introduced, that caused a compile failure when it was specified in the
form.
As a workaround the placeholder texts were moved to the code.
Qt 4 hasn't been relevant to us for ages. So move all (non-parametrized)
placeholder texts to the form files instead.
It's better to keep this kind of text content together. Makes sure
translate/no-translate status is kept as it is.
Diffstat (limited to 'src/qt/openuridialog.cpp')
| -rw-r--r-- | src/qt/openuridialog.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/qt/openuridialog.cpp b/src/qt/openuridialog.cpp index 6a0143ac7..9dc64bb23 100644 --- a/src/qt/openuridialog.cpp +++ b/src/qt/openuridialog.cpp @@ -15,7 +15,6 @@ OpenURIDialog::OpenURIDialog(QWidget *parent) : ui(new Ui::OpenURIDialog) { ui->setupUi(this); - ui->uriEdit->setPlaceholderText("bitcoin:"); } OpenURIDialog::~OpenURIDialog() |