Changeset 334 for trunk/src/gui/kernel/qmime.h
- Timestamp:
- Nov 20, 2009, 7:39:03 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/gui/kernel/qmime.h
r332 r334 127 127 ULONG &flags, ULONG *data) const = 0; 128 128 129 130 129 131 // for converting to Qt 130 virtual Q StringListmimesForFormats(const QList<ULONG> &formats) const = 0;132 virtual Q mimesForFormats(const QList<ULONG> &formats) const = 0; 131 133 virtual QVariant convertFromFormat(ULONG format, ULONG flags, ULONG data, 132 134 const QString &mimeType, … … 145 147 struct Match 146 148 { 147 Match(QPMMime *c, const QString f, int p) :148 converter(c), mime(f), format( 0), priority(p) {}149 Match(QPMMime *c, const QString f, int p) : 150 converter(c), mime(f), format(), priority(p) {} 149 151 150 152 Match(QPMMime *c, ULONG f, int p) : … … 153 155 QPMMime *converter; 154 156 QString mime; // used by allConvertersFromFormats() 155 ULONG format; // used by allConvertersFrom MimeData()157 ULONG format; // used by allConvertersFromMimeData() 156 158 int priority; 157 159 };
Note:
See TracChangeset
for help on using the changeset viewer.