--- koffice-1.2.1/filters/kword/rtf/import/rtfimport.cpp.orig 2002-12-02 16:04:38.000000000 -0500 +++ koffice-1.2.1/filters/kword/rtf/import/rtfimport.cpp 2003-09-05 22:20:19.000000000 -0400 @@ -372,7 +372,7 @@ if (state.brace0) { // Close the current destination - (this->*destination.destproc)(); + (this->*destination.destproc)(0L); destination = destinationStack.pop(); } if (stateStack.count() > 1) @@ -423,7 +423,7 @@ } else if (token.type == RTFTokenizer::PlainText) { - (this->*destination.destproc)(); + (this->*destination.destproc)(0L); } } @@ -988,7 +988,7 @@ } *text++ = 0; - (this->*destination.destproc)(); + (this->*destination.destproc)(0L); token.text = tk; } @@ -1050,7 +1050,7 @@ token.text[0] = 0; } insertUTF8( ch ); - (this->*destination.destproc)(); + (this->*destination.destproc)(0L); } /** @@ -1491,7 +1491,7 @@ } else if (token.type != RTFTokenizer::CloseGroup) { - (this->*destinationStack[flddst].destproc)(); + (this->*destinationStack[flddst].destproc)(0L); } } else if (token.type == RTFTokenizer::OpenGroup) @@ -1678,7 +1678,7 @@ // Send OpenGroup to destination token.type = RTFTokenizer::OpenGroup; - (this->*destination.destproc)(); + (this->*destination.destproc)(0L); } /**