[PC-BSD Commits] r21575 - pcbsd-projects/PCDM
svn at pcbsd.org
svn at pcbsd.org
Fri Feb 15 18:15:06 PST 2013
Author: kenmoore
Date: 2013-02-16 02:15:06 +0000 (Sat, 16 Feb 2013)
New Revision: 21575
Modified:
pcbsd-projects/PCDM/pcdm-gui.cpp
Log:
It looks like the login failed message box might be causing the program to exit, add more debugging to check.
Modified: pcbsd-projects/PCDM/pcdm-gui.cpp
===================================================================
--- pcbsd-projects/PCDM/pcdm-gui.cpp 2013-02-16 02:12:12 UTC (rev 21574)
+++ pcbsd-projects/PCDM/pcdm-gui.cpp 2013-02-16 02:15:06 UTC (rev 21575)
@@ -231,13 +231,14 @@
pwline->setText("");
//Display an info box that the login failed
QMessageBox notice(this);
- notice.setWindowTitle(tr("Invalid Username/Password"));
+ //notice.setWindowTitle(tr("Invalid Username/Password"));
notice.setIcon(QMessageBox::Warning);
notice.setText(tr("Username/Password combination is invalid, please try again."));
notice.setInformativeText("("+tr("Tip: Make sure that caps-lock is turned off.")+")");
notice.setStandardButtons(QMessageBox::Ok);
notice.setDefaultButton(QMessageBox::Ok);
notice.exec();
+ qDebug() << "Notification box Finished";
}
//Re-Enable user input
loginW->setEnabled(TRUE);
More information about the Commits
mailing list