~ubuntu-branches/ubuntu/wily/recoll/wily

« back to all changes in this revision

Viewing changes to qtgui/uiprefs_w.cpp

  • Committer: Package Import Robot
  • Author(s): Kartik Mistry
  • Date: 2015-08-03 14:16:32 UTC
  • mfrom: (33.1.1 sid)
  • Revision ID: package-import@ubuntu.com-20150803141632-w5a1cr8ub2rkyvfe
Tags: 1.21.0-1
* New upstream release.
* debian/control:
  + Build-depend on python3-dev, python-dev, not python3-all-dev and
    python-all-dev. Thanks to Steve Langasek for patch. (Closes: #793636)
  + Added Build-depends on bison.

Show diffs side-by-side

added added

removed removed

Lines of Context:
112
112
        break;
113
113
    case PrefsPack::FCS_BT:
114
114
    default:
115
 
        fprintf(stderr, "filter ctl style %d\n", prefs.filterCtlStyle);
116
115
        filterBT_RB->setChecked(1);
117
116
        break;
118
117
    }
184
183
    for (vector<string>::const_iterator it = langs.begin(); 
185
184
         it != langs.end(); it++) {
186
185
        stemLangCMB->
187
 
            addItem(QString::fromAscii(it->c_str(), it->length()));
188
 
        if (cur == 0 && !strcmp((const char*)prefs.queryStemLang.toAscii(), 
 
186
            addItem(QString::fromUtf8(it->c_str(), it->length()));
 
187
        if (cur == 0 && !strcmp((const char*)prefs.queryStemLang.toUtf8(), 
189
188
                                it->c_str())) {
190
189
            cur = stemLangCMB->count();
191
190
        }