Skip to content

Commit

Permalink
Address PR review comments.
Browse files Browse the repository at this point in the history
Signed-off-by: Camila <[email protected]>
  • Loading branch information
Camila committed Sep 20, 2021
1 parent 83f58e1 commit e6299a0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/gui/ocssharejob.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ void OcsShareJob::setLabel(const QString &shareId, const QString &label)
appendPath(shareId);
setVerb("PUT");

addParam(QString::fromLatin1("label"), label);
addParam(QStringLiteral("label"), label);
_value = label;

start();
Expand Down
4 changes: 2 additions & 2 deletions src/gui/sharelinkwidget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -343,10 +343,10 @@ void ShareLinkWidget::setNote(const QString &note)
}
}

void ShareLinkWidget::slotCreateNote()
void ShareLinkWidget::slotCreateNote()
{
setNote(_ui->textEdit_note->toPlainText());
}
}

void ShareLinkWidget::slotNoteSet()
{
Expand Down

0 comments on commit e6299a0

Please sign in to comment.