diff options
Diffstat (limited to 'qtools/qcache.h')
-rw-r--r-- | qtools/qcache.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qtools/qcache.h b/qtools/qcache.h index 39d4f7a..87f9866 100644 --- a/qtools/qcache.h +++ b/qtools/qcache.h @@ -46,7 +46,7 @@ template<class type> class Q_EXPORT QCache : public QGCache { public: QCache( const QCache<type> &c ) : QGCache(c) {} - QCache( int maxCost=100, int size=17, bool caseSensitive=TRUE ) + QCache( int maxCost=100, uint size=17, bool caseSensitive=TRUE ) : QGCache( maxCost, size, AsciiKey, caseSensitive, TRUE ) {} ~QCache() { clear(); } QCache<type> &operator=( const QCache<type> &c ) |