summaryrefslogtreecommitdiffstats
path: root/doc/html/tqasciicache-h.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/tqasciicache-h.html')
-rw-r--r--doc/html/tqasciicache-h.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/html/tqasciicache-h.html b/doc/html/tqasciicache-h.html
index 840073c96..62706a620 100644
--- a/doc/html/tqasciicache-h.html
+++ b/doc/html/tqasciicache-h.html
@@ -91,8 +91,8 @@ class TQAsciiCache
{
public:
TQAsciiCache( const TQAsciiCache<type> &c ) : TQGCache(c) {}
- TQAsciiCache( int maxCost=100, int size=17, bool caseSensitive=TRUE,
- bool copyKeys=TRUE )
+ TQAsciiCache( int maxCost=100, int size=17, bool caseSensitive=true,
+ bool copyKeys=true )
: TQGCache( maxCost, size, AsciiKey, caseSensitive, copyKeys ) {}
~TQAsciiCache() { clear(); }
TQAsciiCache<type> &operator=( const TQAsciiCache<type> &c )
@@ -110,7 +110,7 @@ public:
{ return TQGCache::remove_other(k); }
type *take( const char *k )
{ return (type *)TQGCache::take_other(k); }
- type *find( const char *k, bool ref=TRUE ) const
+ type *find( const char *k, bool ref=true ) const
{ return (type *)TQGCache::find_other(k,ref);}
type *operator[]( const char *k ) const
{ return (type *)TQGCache::find_other(k);}