Renamed the pastedImage signal to imagePasted.

This commit is contained in:
Mm2PL
2019-09-25 22:39:02 +02:00
parent 4e9951371f
commit b55d08df8e
3 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -207,7 +207,7 @@ Split::Split(QWidget *parent)
[this] { this->focused.invoke(); });
this->input_->ui_.textEdit->focusLost.connect(
[this] { this->focusLost.invoke(); });
this->input_->ui_.textEdit->pastedImage.connect(
this->input_->ui_.textEdit->imagePasted.connect(
[this](const QMimeData *source) {
upload(source, this->getChannel(), *this->input_->ui_.textEdit);
});