From 9331b4b9a2ada61bb9e92988c688ffdf42e1e5dd Mon Sep 17 00:00:00 2001 From: Mark Watkins Date: Wed, 2 Jul 2014 15:33:27 +1000 Subject: [PATCH] Fix New Profile Wizard title, and stop providing a default name --- sleepyhead/newprofile.cpp | 4 ++-- sleepyhead/profileselect.cpp | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/sleepyhead/newprofile.cpp b/sleepyhead/newprofile.cpp index b433b62e..e472629b 100644 --- a/sleepyhead/newprofile.cpp +++ b/sleepyhead/newprofile.cpp @@ -31,7 +31,7 @@ NewProfile::NewProfile(QWidget *parent) : ui(new Ui::NewProfile) { ui->setupUi(this); - ui->userNameEdit->setText(getUserName()); +// ui->userNameEdit->setText(getUserName()); QLocale locale = QLocale::system(); QString shortformat = locale.dateFormat(QLocale::ShortFormat); @@ -157,7 +157,7 @@ void NewProfile::on_nextButton_clicked() case 1: if (ui->userNameEdit->text().isEmpty()) { - QMessageBox::information(this, STR_MessageBox_Error, tr("Empty Username"), QMessageBox::Ok); + QMessageBox::information(this, STR_MessageBox_Error, tr("Please provide a username for this profile"), QMessageBox::Ok); return; } diff --git a/sleepyhead/profileselect.cpp b/sleepyhead/profileselect.cpp index 0b959d25..5a5c391c 100644 --- a/sleepyhead/profileselect.cpp +++ b/sleepyhead/profileselect.cpp @@ -280,6 +280,7 @@ void ProfileSelect::on_newProfileButton_clicked() { NewProfile newprof(this); newprof.skipWelcomeScreen(); + newprof.setWindowTitle(tr("Create new profile")); if (newprof.exec() == NewProfile::Rejected) { // reject();