Lines Matching refs:str
995 QString str;
997 str += "<big>Symbol: <b>";
998 str += print_filter(sym->name);
999 str += "</b></big><br><br>value: ";
1000 str += print_filter(sym_get_string_value(sym));
1001 str += "<br>visibility: ";
1002 str += sym->visible == yes ? "y" : sym->visible == mod ? "m" : "n";
1003 str += "<br>";
1004 str += debug_info(sym);
1006 setText(str);
1129 QString ConfigInfoView::print_filter(const QString &str)
1132 QString res = str;
1160 void ConfigInfoView::expr_print_help(void *data, struct symbol *sym, const char *str)
1166 *stream << print_filter(str);
1169 *stream << print_filter(str);
1175 QByteArray str = url.toEncoded();
1176 const std::size_t count = str.size();
1186 memcpy(data, str.constData(), count);
1538 QString str;
1542 str = QFileDialog::getOpenFileName(this, "", configname);
1543 if (str.isNull())
1546 ba = str.toLocal8Bit();
1571 QString str;
1575 str = QFileDialog::getSaveFileName(this, "", configname);
1576 if (str.isNull())
1579 ba = str.toLocal8Bit();
1788 static const QString str =
1809 QMessageBox::information(this, "qconf", str);
1814 static const QString str = "qconf is Copyright (C) 2002 Roman Zippel <zippel@linux-m68k.org>.\n"
1821 QMessageBox::information(this, "qconf", str + qVersion());