summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordeva <deva>2005-05-23 18:08:02 +0000
committerdeva <deva>2005-05-23 18:08:02 +0000
commit10317df7721b93b4b6c4d38a75c5e13ca57bf97a (patch)
treed6eb235846ae50ad11be1406212ca255377c5e2a
parent0ee11d2d10133f77d69060a58b9c3b38c8ecc70a (diff)
Name is now overwritten if non-valid cpr is used.
-rw-r--r--ChangeLog19
-rw-r--r--src/cprquerydialog.cc5
2 files changed, 21 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index ff5d996..7ec01f5 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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;
}