diff options
Diffstat (limited to 'kdat/Options.cpp')
-rw-r--r-- | kdat/Options.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kdat/Options.cpp b/kdat/Options.cpp index 71a784e..234d802 100644 --- a/kdat/Options.cpp +++ b/kdat/Options.cpp @@ -62,12 +62,12 @@ int Options::getTapeBlockSize() return _tapeBlockSize; } -QString Options::getTapeDevice() +TQString Options::getTapeDevice() { return _tapeDevice; } -QString Options::getTarCommand() +TQString Options::getTarCommand() { return _tarCommand; } @@ -110,7 +110,7 @@ void Options::setTapeBlockSize( int bytes ) } } -void Options::setTapeDevice( const QString & str ) +void Options::setTapeDevice( const TQString & str ) { if ( getTapeDevice() != str ) { _tapeDevice = str; @@ -119,7 +119,7 @@ void Options::setTapeDevice( const QString & str ) } } -void Options::setTarCommand( const QString & str ) +void Options::setTarCommand( const TQString & str ) { if ( getTarCommand() != str ) { _tarCommand = str; |