Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBruno Coudoin <bruno.coudoin@free.fr>2009-07-12 19:02:45 (GMT)
committer Bruno Coudoin <bruno.coudoin@free.fr>2009-07-13 11:24:45 (GMT)
commitb245eb1ef7069694c3c2c1a981ad9028ac353b90 (patch)
tree2db92b6bf349f4d35d2c13cdb68150381600a10f
parentb3b453853e92552da789c88d6f2ebbccdbfdf101 (diff)
Added a demo case windows.
-rw-r--r--src/gcompris/gcompris.c17
1 files changed, 13 insertions, 4 deletions
diff --git a/src/gcompris/gcompris.c b/src/gcompris/gcompris.c
index 7f6edda..7750c1b 100644
--- a/src/gcompris/gcompris.c
+++ b/src/gcompris/gcompris.c
@@ -80,7 +80,7 @@ static void single_instance_release();
* For the Activation dialog
*/
#ifdef STATIC_MODULE
-int gc_activation_check(char *code);
+int gc_activation_check(const char *code);
static void activation_enter_callback(GtkWidget *widget,
GtkWidget *entry );
static void activation_done();
@@ -917,7 +917,7 @@ display_activation_dialog()
* 0 if the code is valid but out of date
* 1 if the code is valid and under 2 years
*/
-int gc_activation_check(char *code)
+int gc_activation_check(const char *code)
{
#ifdef DISABLE_ACTIVATION_CODE
return 1;
@@ -926,7 +926,7 @@ int gc_activation_check(char *code)
int i;
char crc1 = 0;
char crc2 = 0;
- char codeddate[4];
+ char codeddate[5];
if(strlen(code) != 6)
return -1;
@@ -973,7 +973,16 @@ static void
activation_enter_callback( GtkWidget *entry,
GtkWidget *notused )
{
- switch(gc_activation_check((char *)gtk_entry_get_text(GTK_ENTRY(entry))))
+ const char *code = gtk_entry_get_text(GTK_ENTRY(entry));
+ // A special code to test the full version without
+ // saving the activation
+ if (strncmp(code, "123321", 6) == 0)
+ {
+ gtk_entry_set_text(GTK_ENTRY(entry), "GOOD");
+ return;
+ }
+
+ switch(gc_activation_check(code))
{
case 1:
gc_prop_get()->key = strdup(gtk_entry_get_text(GTK_ENTRY(entry)));