diff --git a/src/include/recset.h b/src/include/recset.h index 0738c5a7f..9586b965a 100755 --- a/src/include/recset.h +++ b/src/include/recset.h @@ -143,8 +143,8 @@ public: virtual TCursor* cursor() const; void freeze(bool on = true) const { return cursor()->freeze(on); } void unfreeze() const { return cursor()->freeze(false); } - bool frozen(bool on = true) const { return cursor()->frozen(); } - bool not_frozen(bool on = true) const { return cursor()->not_frozen(); } + bool frozen() const { return cursor()->frozen(); } + bool not_frozen() const { return cursor()->not_frozen(); } void set(const char* use); virtual void requery(); virtual TRecnotype items() const;