diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-01-25 16:34:24 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-01-25 16:34:24 -0600 |
commit | 0cd3b7cec9eed70d39e1ae884d76db585790c9a3 (patch) | |
tree | 9c456a7142756d22251c89dbda0b0d90022ea18d | |
parent | c398d90c9167505380fe074481416f5dcb7304eb (diff) | |
download | tdeedu-0cd3b7cec9eed70d39e1ae884d76db585790c9a3.tar.gz tdeedu-0cd3b7cec9eed70d39e1ae884d76db585790c9a3.zip |
Fix linear alphabet string errors
-rw-r--r-- | kstars/kstars/indi/base64.c | 2 | ||||
-rw-r--r-- | ktouch/extras/training-gen/perl/dk.config | 2 | ||||
-rw-r--r-- | ktouch/extras/training-gen/perl/en.config | 2 | ||||
-rw-r--r-- | ktouch/extras/training-gen/perl/es.config | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/kstars/kstars/indi/base64.c b/kstars/kstars/indi/base64.c index e83db546..28424512 100644 --- a/kstars/kstars/indi/base64.c +++ b/kstars/kstars/indi/base64.c @@ -30,7 +30,7 @@ #include "base64.h" static const char base64digits[] = - "ABCDEFGHIJKLMNOPTQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; + "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; #define BAD (-1) static const char base64val[] = { diff --git a/ktouch/extras/training-gen/perl/dk.config b/ktouch/extras/training-gen/perl/dk.config index 46d7edd6..409a07ca 100644 --- a/ktouch/extras/training-gen/perl/dk.config +++ b/ktouch/extras/training-gen/perl/dk.config @@ -16,4 +16,4 @@ wn cæ x ,. -ABCDEFGHIJKLMNOPTQRSTUVWYZÆØÅ
\ No newline at end of file +ABCDEFGHIJKLMNOPQRSTUVWYZÆØÅ
\ No newline at end of file diff --git a/ktouch/extras/training-gen/perl/en.config b/ktouch/extras/training-gen/perl/en.config index cca13468..bb5df1ae 100644 --- a/ktouch/extras/training-gen/perl/en.config +++ b/ktouch/extras/training-gen/perl/en.config @@ -12,4 +12,4 @@ qu wn cx yz -ABCDEFGHIJKLMNOPTQRSTUVWXYZ +ABCDEFGHIJKLMNOPQRSTUVWXYZ diff --git a/ktouch/extras/training-gen/perl/es.config b/ktouch/extras/training-gen/perl/es.config index 1efd7b72..49b8b32d 100644 --- a/ktouch/extras/training-gen/perl/es.config +++ b/ktouch/extras/training-gen/perl/es.config @@ -14,4 +14,4 @@ quü wnñ cx yz -ABCDEFGHIJKLMNOPTQRSTUVWXYZ +ABCDEFGHIJKLMNOPQRSTUVWXYZ |