Changeset 15811


Ignore:
Timestamp:
2008-05-29T17:21:17+12:00 (16 years ago)
Author:
mdewsnip
Message:

(Adding new DB support) Now calls to_uni() on the values from the database so they are encoded correctly.

File:
1 edited

Legend:

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

    r15803 r15811  
    2525
    2626#include "sqlitedbclass.h"
     27#include "gsdlunicode.h"
    2728#include "unitool.h"
    2829
     
    288289    if (vals[i])
    289290    {
    290       row[columnnames[i]] = vals[i];     
     291      row[columnnames[i]] = to_uni(vals[i]);
    291292    }
    292293  }
Note: See TracChangeset for help on using the changeset viewer.