mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-23 21:46:03 +03:00
Improved startup logging with version and lang
This commit is contained in:
parent
c52a3f290b
commit
a875d14671
3 changed files with 4 additions and 7 deletions
|
@ -68,7 +68,10 @@ Application::Application(int &argc, char **argv) :
|
|||
processEvents();
|
||||
|
||||
// Internationalization support.
|
||||
qDebug() << "################## ownCloud client " << QLocale::system().name();
|
||||
qDebug() << ""; // relaxing debug output in qtCreator
|
||||
qDebug() << QString( "################## %1 %2 %3 ").arg(_theme->appName())
|
||||
.arg( QLocale::system().name() )
|
||||
.arg(_theme->version());
|
||||
|
||||
QTranslator *qtTranslator = new QTranslator;
|
||||
qtTranslator->load("qt_" + QLocale::system().name(),
|
||||
|
|
|
@ -351,11 +351,6 @@ void FolderWizardTargetPage::on_urlFolderRadioBtn_toggled()
|
|||
|
||||
}
|
||||
|
||||
void FolderWizardTargetPage::on_checkBoxOnlyOnline_toggled()
|
||||
{
|
||||
slotToggleItems();
|
||||
}
|
||||
|
||||
void FolderWizardTargetPage::on_localFolder2LineEdit_textChanged()
|
||||
{
|
||||
emit completeChanged();
|
||||
|
|
|
@ -79,7 +79,6 @@ protected slots:
|
|||
|
||||
void on_localFolderRadioBtn_toggled();
|
||||
void on_urlFolderRadioBtn_toggled();
|
||||
void on_checkBoxOnlyOnline_toggled();
|
||||
|
||||
void on_localFolder2LineEdit_textChanged();
|
||||
void on_urlFolderLineEdit_textChanged();
|
||||
|
|
Loading…
Reference in a new issue