Changeset 15648


Ignore:
Timestamp:
2008-05-22T15:51:19+12:00 (16 years ago)
Author:
mdewsnip
Message:

(Adding new DB support) Changing second setinfo() to setkeydata(), to match getinfo()/getkeydata().

Location:
gsdl/trunk/lib
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • gsdl/trunk/lib/sqlitedbclass.cpp

    r15647 r15648  
    226226  }
    227227
    228   return setinfo(key, data);
     228  return setkeydata(key, data);
    229229}
    230230
    231231
    232232// returns true on success
    233 bool sqlitedbclass::setinfo (const text_t &key, const text_t &data)
     233bool sqlitedbclass::setkeydata (const text_t &key, const text_t &data)
    234234{
    235235  // We need to do either an INSERT or UPDATE depending on whether the key already exists
  • gsdl/trunk/lib/sqlitedbclass.h

    r15647 r15648  
    6161
    6262  // returns true on success
    63   bool setinfo (const text_t &key, const text_t &data);
     63  bool setkeydata (const text_t &key, const text_t &data);
    6464
    6565protected:
Note: See TracChangeset for help on using the changeset viewer.