summaryrefslogtreecommitdiffstats
path: root/src/fileimporter.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/fileimporter.cpp')
-rw-r--r--src/fileimporter.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/fileimporter.cpp b/src/fileimporter.cpp
index 65ee792..2633d35 100644
--- a/src/fileimporter.cpp
+++ b/src/fileimporter.cpp
@@ -17,14 +17,14 @@
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
-#include <qbuffer.h>
+#include <ntqbuffer.h>
#include "fileimporter.h"
namespace BibTeX
{
- FileImporter::FileImporter() : QObject()
+ FileImporter::FileImporter() : TQObject()
{
// nothing
}
@@ -34,15 +34,15 @@ namespace BibTeX
// nothing
}
- File* FileImporter::load( const QString& text )
+ File* FileImporter::load( const TQString& text )
{
if ( text.isNull() || text.isEmpty() )
return NULL;
- QBuffer buffer;
+ TQBuffer buffer;
buffer.open( IO_WriteOnly );
- QTextStream stream( &buffer );
- stream.setEncoding( QTextStream::UnicodeUTF8 );
+ TQTextStream stream( &buffer );
+ stream.setEncoding( TQTextStream::UnicodeUTF8 );
stream << text;
buffer.close();