diff --git a/mainwindow.cpp b/mainwindow.cpp
index 0d35411e..858e7eba 100644
--- a/mainwindow.cpp
+++ b/mainwindow.cpp
@@ -435,3 +435,8 @@ void MainWindow::on_actionPrint_Report_triggered()
QMessageBox::information(this,"Not supported Yet","Sorry, printing from this page is not supported yet",QMessageBox::Ok);
}
}
+
+void MainWindow::on_action_Edit_Profile_triggered()
+{
+
+}
diff --git a/mainwindow.h b/mainwindow.h
index 762f4ef1..1c646bbd 100644
--- a/mainwindow.h
+++ b/mainwindow.h
@@ -88,6 +88,8 @@ private slots:
void updatestatusBarMessage (const QString & text);
void on_actionPrint_Report_triggered();
+ void on_action_Edit_Profile_triggered();
+
private:
Ui::MainWindow *ui;
Daily * daily;
diff --git a/mainwindow.ui b/mainwindow.ui
index ac3423bc..b600712b 100644
--- a/mainwindow.ui
+++ b/mainwindow.ui
@@ -581,6 +581,7 @@
+
@@ -773,6 +774,11 @@
Print &Report
+
+
+ &Edit Profile
+
+
diff --git a/newprofile.cpp b/newprofile.cpp
index ecf62058..9444034c 100644
--- a/newprofile.cpp
+++ b/newprofile.cpp
@@ -87,7 +87,7 @@ void NewProfile::on_nextButton_clicked()
QByteArray ba=ui->passwordEdit1->text().toUtf8();
prof["Password"]=QString(QCryptographicHash::hash(ba,QCryptographicHash::Sha1).toHex());
}
- prof["Password"]="";
+ //prof["Password"]="";
if (ui->genderCombo->currentIndex()==1) {
prof["Gender"]="Male";
} else if (ui->genderCombo->currentIndex()==2) {
diff --git a/profileselect.cpp b/profileselect.cpp
index 3198d76a..c9254b7d 100644
--- a/profileselect.cpp
+++ b/profileselect.cpp
@@ -66,7 +66,7 @@ void ProfileSelect::on_listView_activated(const QModelIndex &index)
QString name=index.data().toString();
Profile *profile=Profiles::profiles[name];
if (!profile) return;
- if ((*profile)["Password"].toString().isEmpty()) {
+ if (!profile->Exists("Password")) {
m_selectedProfile=name;
pref["Profile"]=name;
} else {