diff options
-rw-r--r-- | ChangeLog | 19 | ||||
-rw-r--r-- | src/cprquerydialog.cc | 5 |
2 files changed, 21 insertions, 3 deletions
@@ -1,32 +1,45 @@ -*- Text -*- -======================================= Changelog for MIaV -======================================= -May 2005 - MIaV version 0.2.3 +======================================= +May 24 2005 - MIaV version 0.2.3 +--------------------------------------- New Features: - Bug Fixes: - Free of NULL input queue removed. + - Name is overwritten with a message, if non-valid cpr is used. +======================================= May 22 2005 - MIaV version 0.2.2 +--------------------------------------- New Features: - Added multithread encoding to the server. Bug Fixes: - None +======================================= May 17 2005 - MIaV version 0.2.1 +--------------------------------------- Fixed some bugs and added some time code to the gui.. +======================================= May 9 2005 - MIaV version 0.2.0 +--------------------------------------- Wiped all the ffmpeg code out of there. +======================================= May 3 2005 - MIaV version 0.1.3 +--------------------------------------- First really functional release (hence the version jump). +======================================= Oct 31 2004 - MIaV version 0.0.2 +--------------------------------------- Second release, still very beta. +======================================= Aug 23 2004 - MIaV version 0.0.1 +--------------------------------------- The very first (very beta) release of MIaV. diff --git a/src/cprquerydialog.cc b/src/cprquerydialog.cc index faca073..0da4101 100644 --- a/src/cprquerydialog.cc +++ b/src/cprquerydialog.cc @@ -31,6 +31,9 @@ /* * $Log$ + * Revision 1.11 2005/05/23 18:08:02 deva + * Name is now overwritten if non-valid cpr is used. + * * Revision 1.10 2005/05/03 08:31:59 deva * Removed the error object, and replaced it with a more generic info object. * @@ -273,6 +276,8 @@ void CPRQueryDialog::verifycpr(char *cpr) bcancel_clicked(); break; case MSG_YES: + // Overwrite name from previous cpr. + lbl_name->setText(NAME_NOT_AVAILABLE); accept(); break; } |