diff options
-rw-r--r-- | include/comphelper/profilezone.hxx | 2 | ||||
-rw-r--r-- | toolkit/source/awt/vclxtoolkit.cxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/include/comphelper/profilezone.hxx b/include/comphelper/profilezone.hxx index 7c278294cb38..764601682f05 100644 --- a/include/comphelper/profilezone.hxx +++ b/include/comphelper/profilezone.hxx @@ -24,7 +24,7 @@ namespace comphelper namespace ProfileRecording { -COMPHELPER_DLLPUBLIC void startRecording(bool bRecording = true); +COMPHELPER_DLLPUBLIC void startRecording(bool bRecording); COMPHELPER_DLLPUBLIC long long addRecording(const char * aProfileId, long long aCreateTime); diff --git a/toolkit/source/awt/vclxtoolkit.cxx b/toolkit/source/awt/vclxtoolkit.cxx index eb888f6f0872..866eb2a4cc2c 100644 --- a/toolkit/source/awt/vclxtoolkit.cxx +++ b/toolkit/source/awt/vclxtoolkit.cxx @@ -1924,7 +1924,7 @@ void SAL_CALL VCLXToolkit::pause(sal_Int32 nMilliseconds) void SAL_CALL VCLXToolkit::startRecording() { - ::comphelper::ProfileRecording::startRecording(); + ::comphelper::ProfileRecording::startRecording(true); } void SAL_CALL VCLXToolkit::stopRecording() |