Changeset 6f39595 in confclerk_git for src/mvc/event.h
- Timestamp:
- 01/17/10 18:18:22 (13 years ago)
- Branches:
- master, qt5
- Children:
- 9f473ba
- Parents:
- c790268
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/mvc/event.h
rc790268 r6f39595 28 28 static Event getById(int id, int conferenceId); 29 29 static QList<Event> getByDate(const QDate& date, int conferenceId); 30 static QList<Event> getFavByDate(const QDate& date, int conferenceId); // get Favourities by Date 30 31 31 32 public: … … 54 55 void setType(const QString& type) { setValue("type", type); } 55 56 void setLanguage(const QString& language) { setValue("language", language); } 56 void setFavourite(bool favourite) { setValue("favourite", favourite); }57 void setFavourite(bool favourite) { setValue("favourite", (int)favourite); } 57 58 // Table 2 : virtual table for FTS (Full Text Search) 58 59 void setTag(const QString& tag) { setValue("tag", tag); }
Note: See TracChangeset
for help on using the changeset viewer.