summaryrefslogtreecommitdiff
path: root/sfx2/source/control/unoctitm.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sfx2/source/control/unoctitm.cxx')
-rw-r--r--sfx2/source/control/unoctitm.cxx13
1 files changed, 2 insertions, 11 deletions
diff --git a/sfx2/source/control/unoctitm.cxx b/sfx2/source/control/unoctitm.cxx
index 3d84cc05edab..acdf7a3b779d 100644
--- a/sfx2/source/control/unoctitm.cxx
+++ b/sfx2/source/control/unoctitm.cxx
@@ -53,7 +53,7 @@
#include <osl/mutex.hxx>
#include <uno/current_context.hxx>
#include <vcl/svapp.hxx>
-#include <rtl/bootstrap.hxx>
+#include <vcl/uitest/logger.hxx>
#include <sfx2/app.hxx>
#include <sfx2/unoctitm.hxx>
@@ -609,16 +609,7 @@ void collectUIInformation(const util::URL& rURL, const uno::Sequence<beans::Prop
if (!pFile)
return;
- OUString aCommand = rURL.Protocol + rURL.Path;
-
- OUString aDirPath("${$BRAND_BASE_DIR/" LIBO_ETC_FOLDER "/" SAL_CONFIGFILE("bootstrap") ":UserInstallation}/uitest/");
- rtl::Bootstrap::expandMacros(aDirPath);
- osl::Directory::createPath(aDirPath);
- OUString aFilePath = aDirPath + OUString::fromUtf8(pFile);
-
- SvFileStream aFile(aFilePath, StreamMode::STD_READWRITE);
- aFile.Seek(aFile.Tell() + aFile.remainingSize());
- aFile.WriteLine(OUStringToOString(aCommand, RTL_TEXTENCODING_UTF8));
+ UITestLogger::getInstance().logCommand(rURL.Protocol + rURL.Path);
}
}