rclm_wins.cpp (recoll-1.27.11) | : | rclm_wins.cpp (recoll-1.27.12) | ||
---|---|---|---|---|
skipping to change at line 334 | skipping to change at line 334 | |||
} | } | |||
void RclMain::showExtIdxDialog() | void RclMain::showExtIdxDialog() | |||
{ | { | |||
showUIPrefs(); | showUIPrefs(); | |||
uiprefs->tabWidget->setCurrentIndex(3); | uiprefs->tabWidget->setCurrentIndex(3); | |||
} | } | |||
void RclMain::showAboutDialog() | void RclMain::showAboutDialog() | |||
{ | { | |||
string vstring = Rcl::version_string() + | QString darkcss; | |||
string("<br><a href='https://www.recoll.org'>www.recoll.org</a>") + | if (prefs.darkMode) { | |||
string("<br><a href='https://www.xapian.org'>www.xapian.org</a>"); | darkcss = readDarkCSS(); | |||
QMessageBox::information(this, tr("About Recoll"), vstring.c_str()); | } | |||
QString vstring = QString("<html><head>") + darkcss + "</head><body>" + | ||||
u8s2qs(Rcl::version_string()) + | ||||
"<br><a href='https://www.recoll.org'>www.recoll.org</a>" + | ||||
"<br><a href='https://www.xapian.org'>www.xapian.org</a>"; | ||||
QMessageBox::information(this, tr("About Recoll"), vstring); | ||||
} | } | |||
void RclMain::showMissingHelpers() | void RclMain::showMissingHelpers() | |||
{ | { | |||
string miss; | string miss; | |||
if (!theconfig->getMissingHelperDesc(miss)) { | if (!theconfig->getMissingHelperDesc(miss)) { | |||
QMessageBox::information( | QMessageBox::information( | |||
this, "", tr("No information: initial indexing not yet performed.")) ; | this, "", tr("No information: initial indexing not yet performed.")) ; | |||
return; | return; | |||
} | } | |||
End of changes. 1 change blocks. | ||||
4 lines changed or deleted | 9 lines changed or added |