summaryrefslogtreecommitdiff
path: root/include/desktop
diff options
context:
space:
mode:
authorJuergen Funk <juergen.funk_ml@cib.de>2019-09-25 11:21:17 +0200
committerJuergen Funk (CIB) <juergen.funk_ml@cib.de>2019-10-01 10:34:20 +0200
commitb5adb2433de4f376c253a813a632e982c7ac90c5 (patch)
treee1e9e455ba80c3132564a386357ab86e55a3ece9 /include/desktop
parent7388db1b63fb19224f80cd7930268ec924f2c93f (diff)
crashreport: change addKeyValue to lower-case camel
Change-Id: Ife5775d3a570da1fc2e4dd627456523705b64e1d Reviewed-on: https://gerrit.libreoffice.org/79601 Reviewed-by: Juergen Funk (CIB) <juergen.funk_ml@cib.de> Tested-by: Juergen Funk (CIB) <juergen.funk_ml@cib.de>
Diffstat (limited to 'include/desktop')
-rw-r--r--include/desktop/crashreport.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/desktop/crashreport.hxx b/include/desktop/crashreport.hxx
index 6056adbe1d28..e3486bbf0863 100644
--- a/include/desktop/crashreport.hxx
+++ b/include/desktop/crashreport.hxx
@@ -41,7 +41,7 @@ CRASHREPORT_DLLPUBLIC
/*class*/ CrashReporter
{
public:
- static void AddKeyValue(const OUString& rKey, const OUString& rValue);
+ static void addKeyValue(const OUString& rKey, const OUString& rValue);
static std::string getIniFileName();
@@ -69,7 +69,7 @@ private:
// everywhere we want to log something to the crash report system.
#if HAVE_FEATURE_BREAKPAD
#else
-inline void CrashReporter::AddKeyValue(SAL_UNUSED_PARAMETER const OUString& /*rKey*/, SAL_UNUSED_PARAMETER const OUString& /*rValue*/)
+inline void CrashReporter::addKeyValue(SAL_UNUSED_PARAMETER const OUString& /*rKey*/, SAL_UNUSED_PARAMETER const OUString& /*rValue*/)
{
}
#endif