freebsd-ports/textproc/cbedic/files/patch-translator.cpp
Peter Pentchev 4238596de3 Snatch kbedic from the jaws of Death in the nick of time... Okay, okay -
the truth is, this is a *long* overdue update to kbedic to use the QT 3
libraries instead of the dead-and-gone QT 2 ones.  This does indeed result
in some duplication of installed dictionaries, since kbedic no longer uses
textproc/bedic-data, but I'll take care of this later.

Break cbedic out into a full-blown port - it's a different version from
kbedic now.  While I'm here, take maintainership of both ports.

Submitted by:	arved (a long, long time ago)
2005-02-15 23:17:45 +00:00

38 lines
1.8 KiB
C++

--- src/translator.cpp.orig Sat Aug 9 19:24:42 2003
+++ src/translator.cpp Sat Aug 9 19:26:11 2003
@@ -119,7 +119,7 @@
// Real construcor
// Call the same method of Database, and return same result
//========================================================================
-bool Translator::createDictionary(const char *fileName, const int dictionary, const long fixedLastWordPointer = 0) {
+bool Translator::createDictionary(const char *fileName, const int dictionary, const long fixedLastWordPointer) {
bool ret = false;
switch (dictionary) {
case ENG_BUL:
@@ -275,7 +275,7 @@
// Return true if passed word is legal bulgarian word as LATIN_INPUT
// Return pointer to new word that is legal dictionary word
//========================================================================
-bool Translator::isLatinInput(const char *word, char *buf, const bool ignoreSpace = false) {
+bool Translator::isLatinInput(const char *word, char *buf, const bool ignoreSpace ) {
int i = 0;
char *p;
while (word[i] != '\0') {
@@ -304,7 +304,7 @@
// to a normal latin output
// Change buffer and return pointer to new word
//========================================================================
-char *Translator::toLatin(const char *word, char *buf, const bool legalLatinInput = true) {
+char *Translator::toLatin(const char *word, char *buf, const bool legalLatinInput ) {
int i = 0;
int j = 0;
char *p;
@@ -348,7 +348,7 @@
// Call the same method of Database, and return same result
// But perform some operations
//========================================================================
-char *Translator::getWord(const bool lowerCase = true, const bool legalLatinInput = true) {
+char *Translator::getWord(const bool lowerCase, const bool legalLatinInput ) {
char *ret = NULL;
switch (currentDictionary) {
case ENG_BUL: