Changeset 4326 in vbox
- Timestamp:
- Aug 23, 2007 8:35:00 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/include/QIWidgetValidator.h
r4323 r4326 60 60 61 61 QIULongValidator (QObject *aParent, const char *aName = 0) 62 : mBottom (0), mTop (ULONG_MAX)63 , QValidator (aParent, aName) {}62 : QValidator (aParent, aName) 63 , mBottom (0), mTop (ULONG_MAX) {} 64 64 65 65 QIULongValidator (ulong aMinimum, ulong aMaximum, 66 66 QObject *aParent, const char *aName = 0) 67 : mBottom (aMinimum), mTop (aMaximum)68 , QValidator (aParent, aName) {}67 : QValidator (aParent, aName) 68 , mBottom (aMinimum), mTop (aMaximum) {} 69 69 70 70 ~QIULongValidator() {}
Note:
See TracChangeset
for help on using the changeset viewer.