ToastFreeware
/
toast
/
confclerk.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
80589bb
)
Fixed bug: Changing the conference URL resulted in an error message.
author
Philipp Spitzer
<philipp@spitzer.priv.at>
Tue, 21 Aug 2012 21:02:51 +0000
(21:02 +0000)
committer
Philipp Spitzer
<philipp@spitzer.priv.at>
Tue, 21 Aug 2012 21:02:51 +0000
(21:02 +0000)
src/gui/conferenceeditor.cpp
patch
|
blob
|
history
diff --git
a/src/gui/conferenceeditor.cpp
b/src/gui/conferenceeditor.cpp
index 718999ce62e048b167ce06ce08184c78a52e5269..bfb73eab3cb1aff6eb6b329bb6911f88dc282517 100644
(file)
--- a/
src/gui/conferenceeditor.cpp
+++ b/
src/gui/conferenceeditor.cpp
@@
-150,7
+150,7
@@
void ConferenceEditor::refreshClicked()
if (url.isEmpty()) {
static const QString format("Schedule URL for %1 is not set. Enter the schedule URL:");
bool ok;
-
QString
url = QInputDialog::getText(this, "URL Input", format.arg(selectedConf.title()), QLineEdit::Normal, QString(), &ok);
+ url = QInputDialog::getText(this, "URL Input", format.arg(selectedConf.title()), QLineEdit::Normal, QString(), &ok);
if (!ok) return;
// first save it, to remain if fetch fails
emit changeUrlRequested(selected_id, url);