From 7137102232cea1957339c148a8f04016d8fc7b27 Mon Sep 17 00:00:00 2001 From: Markus Mohrhard Date: Tue, 25 Apr 2017 00:48:39 +0200 Subject: use consistent method names Change-Id: I19e066b7e4c4ba1fc1b0802e80260a6d9b0d9b9a --- desktop/source/app/app.cxx | 2 +- desktop/source/app/updater.cxx | 2 +- desktop/source/app/updater.hxx | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) (limited to 'desktop/source') diff --git a/desktop/source/app/app.cxx b/desktop/source/app/app.cxx index 7bb7286af8ca..f664d6e969e5 100644 --- a/desktop/source/app/app.cxx +++ b/desktop/source/app/app.cxx @@ -1487,7 +1487,7 @@ int Desktop::Main() bool bValidUpdateDirExists = aDirectoryItem.is(); if (bValidUpdateDirExists) { - Update(); + update(); } } diff --git a/desktop/source/app/updater.cxx b/desktop/source/app/updater.cxx index 83d2a3010bf6..8c71f3bc2c9c 100644 --- a/desktop/source/app/updater.cxx +++ b/desktop/source/app/updater.cxx @@ -170,7 +170,7 @@ struct update_info } -void Update() +void update() { OUString aLibExecDirURL( "$BRAND_BASE_DIR/" LIBO_LIBEXEC_FOLDER ); rtl::Bootstrap::expandMacros(aLibExecDirURL); diff --git a/desktop/source/app/updater.hxx b/desktop/source/app/updater.hxx index fab760516952..fa5349afbe11 100644 --- a/desktop/source/app/updater.hxx +++ b/desktop/source/app/updater.hxx @@ -12,7 +12,7 @@ #include -void Update(); +void update(); void update_checker(); -- cgit