|
a/src/qtgui/advsearch.ui.h |
|
b/src/qtgui/advsearch.ui.h |
|
... |
|
... |
129 |
Rcl::AdvSearchData mydata;
|
129 |
Rcl::AdvSearchData mydata;
|
130 |
mydata.allwords = string((const char*)(andWordsLE->text().utf8()));
|
130 |
mydata.allwords = string((const char*)(andWordsLE->text().utf8()));
|
131 |
mydata.phrase = string((const char*)(phraseLE->text().utf8()));
|
131 |
mydata.phrase = string((const char*)(phraseLE->text().utf8()));
|
132 |
mydata.orwords = string((const char*)(orWordsLE->text().utf8()));
|
132 |
mydata.orwords = string((const char*)(orWordsLE->text().utf8()));
|
133 |
mydata.nowords = string((const char*)(noWordsLE->text().utf8()));
|
133 |
mydata.nowords = string((const char*)(noWordsLE->text().utf8()));
|
|
|
134 |
mydata.filename = string((const char*)(fileNameLE->text().utf8()));
|
134 |
if (restrictFtCB->isOn() && noFiltypsLB->count() > 0) {
|
135 |
if (restrictFtCB->isOn() && noFiltypsLB->count() > 0) {
|
135 |
for (unsigned int i = 0; i < yesFiltypsLB->count(); i++) {
|
136 |
for (unsigned int i = 0; i < yesFiltypsLB->count(); i++) {
|
136 |
QCString ctext = yesFiltypsLB->item(i)->text().utf8();
|
137 |
QCString ctext = yesFiltypsLB->item(i)->text().utf8();
|
137 |
mydata.filetypes.push_back(string((const char *)ctext));
|
138 |
mydata.filetypes.push_back(string((const char *)ctext));
|
138 |
}
|
139 |
}
|