diff options
author | Caolán McNamara <caolanm@redhat.com> | 2011-07-10 00:43:08 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2011-07-11 09:04:34 +0100 |
commit | c46bc9ed206f560be9873c8fd035024d306229c3 (patch) | |
tree | f00dacabdd911b9a337a6f0a206bd8bf5c5cffd6 | |
parent | 75b2f95bdb61fe74c240d4d20763e215adaee5d2 (diff) |
callcatcher: remove unused implFoo*
-rw-r--r-- | basic/source/inc/runtime.hxx | 9 | ||||
-rw-r--r-- | basic/source/runtime/methods.cxx | 22 |
2 files changed, 0 insertions, 31 deletions
diff --git a/basic/source/inc/runtime.hxx b/basic/source/inc/runtime.hxx index 855af7fa1eb7..d8e8b2507640 100644 --- a/basic/source/inc/runtime.hxx +++ b/basic/source/inc/runtime.hxx @@ -480,15 +480,6 @@ sal_Bool hasUno( void ); // (Implemented in methods.cxx) String getFullPath( const String& aRelPath ); -// Sets (virtual) current path for UCB file access -void implChDir( const String& aDir ); - -// Sets (virtual) current drive for UCB file access -void implChDrive( const String& aDrive ); - -// Returns (virtual) current path for UCB file access -String implGetCurDir( void ); - // Implementation of StepRENAME with UCB // (Implemented in methods.cxx, so step0.cxx // has not to be infected with UNO) diff --git a/basic/source/runtime/methods.cxx b/basic/source/runtime/methods.cxx index f7920a11d1a9..0d74f14407d2 100644 --- a/basic/source/runtime/methods.cxx +++ b/basic/source/runtime/methods.cxx @@ -184,28 +184,6 @@ String getFullPath( const String& aRelPath ) return aFileURL; } -// Sets (virtual) current path for UCB file access -void implChDir( const String& aDir ) -{ - (void)aDir; - // TODO -} - -// Sets (virtual) current drive for UCB file access -void implChDrive( const String& aDrive ) -{ - (void)aDrive; - // TODO -} - -// Returns (virtual) current path for UCB file access -String implGetCurDir( void ) -{ - String aRetStr; - - return aRetStr; -} - // TODO: -> SbiGlobals static com::sun::star::uno::Reference< XSimpleFileAccess3 > getFileAccess( void ) { |