Changeset f5b68a4 for src/mvc/conference.h
- Timestamp:
- 04/15/10 14:06:07 (12 years ago)
- Branches:
- master, qt5
- Children:
- d97bcab
- Parents:
- d06ae27
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/mvc/conference.h
rd06ae27 rf5b68a4 60 60 } 61 61 62 #if 0 62 63 void setId(int id) { setValue("id", id); } 63 64 void setTitle(const QString& title) { setValue("title", title); } … … 71 72 void setTimeslotDuration(int timeslotDuration) { setValue("timeslot_duration", timeslotDuration); } 72 73 void setActive(bool active) { setValue("active", (int)((active))); } 73 void setUrl(const QString& url) { setValue("url", url.isNull() ? QVariant() : url); } 74 #endif 75 void setUrl(const QString& url) 76 { 77 setValue("url", url.isNull() ? QVariant() : url); 78 update("url"); 79 } 74 80 }; 75 81
Note: See TracChangeset
for help on using the changeset viewer.