Changeset 280f29b
- Timestamp:
- 07/28/21 23:37:22 (18 months ago)
- Branches:
- master
- Children:
- 5b7fa79
- Parents:
- 03f38cf
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/gui/conferenceeditor.cpp
r03f38cf r280f29b 90 90 conferenceTitle->setText(conf.title()); 91 91 conferenceSubtitle->setText(conf.subtitle()); 92 conferenceWhere->setText(conf.city() + (!conf.venue().isEmpty() ? ", " + conf.venue() : "")); 92 QString where = conf.city(); 93 if (!conf.city().isEmpty() && !conf.venue().isEmpty()) where += ", "; 94 where += conf.venue(); 95 conferenceWhere->setText(where); 93 96 conferenceWhen->setText( 94 97 conf.start().toString("yyyy-MM-dd")
Note: See TracChangeset
for help on using the changeset viewer.