Lines Matching refs:str
47 static inline QString qgettext(const char* str) in qgettext() argument
49 return QString::fromLocal8Bit(gettext(str)); in qgettext()
52 static inline QString qgettext(const QString& str) in qgettext() argument
54 return QString::fromLocal8Bit(gettext(str.toLatin1())); in qgettext()
1058 QString str; in symbolInfo() local
1060 str += "<big>Symbol: <b>"; in symbolInfo()
1061 str += print_filter(sym->name); in symbolInfo()
1062 str += "</b></big><br><br>value: "; in symbolInfo()
1063 str += print_filter(sym_get_string_value(sym)); in symbolInfo()
1064 str += "<br>visibility: "; in symbolInfo()
1065 str += sym->visible == yes ? "y" : sym->visible == mod ? "m" : "n"; in symbolInfo()
1066 str += "<br>"; in symbolInfo()
1067 str += debug_info(sym); in symbolInfo()
1069 setText(str); in symbolInfo()
1182 QString ConfigInfoView::print_filter(const QString &str) in print_filter() argument
1185 QString res = str; in print_filter()
1213 void ConfigInfoView::expr_print_help(void *data, struct symbol *sym, const char *str) in expr_print_help() argument
1216 QString str2 = print_filter(str); in expr_print_help()
1740 static const QString str = _("Welcome to the qconf graphical configuration tool.\n\n" in showIntro() local
1752 QMessageBox::information(this, "qconf", str); in showIntro()
1757 static const QString str = _("qconf is Copyright (C) 2002 Roman Zippel <zippel@linux-m68k.org>.\n" in showAbout() local
1761 QMessageBox::information(this, "qconf", str); in showAbout()