diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-11-27 14:18:26 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-11-28 14:00:01 +0100 |
commit | ded9155d924d8e0261981f9294ddb6486874ed8f (patch) | |
tree | 9325d0b8b25e0caffa0bdc49f56cc45e43b8aade /svtools | |
parent | 4814ea51560037a7fe0960e5b7e6f616aae8a5b2 (diff) |
-Werror,-Wunused-variable
Change-Id: Idfca7a384f2108af7ef197f255eb5f07933a7322
Diffstat (limited to 'svtools')
-rw-r--r-- | svtools/source/uno/fpicker.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svtools/source/uno/fpicker.cxx b/svtools/source/uno/fpicker.cxx index bed1a8c7f17c..aa650f5675f4 100644 --- a/svtools/source/uno/fpicker.cxx +++ b/svtools/source/uno/fpicker.cxx @@ -115,8 +115,8 @@ Sequence< OUString > FilePicker_getSupportedServiceNames() */ static OUString FolderPicker_getSystemPickerServiceName() { - OUString aDesktopEnvironment (Application::GetDesktopEnvironment()); #ifdef UNX + OUString aDesktopEnvironment (Application::GetDesktopEnvironment()); if (aDesktopEnvironment.equalsIgnoreAsciiCase("tde")) return OUString("com.sun.star.ui.dialogs.TDEFolderPicker"); else if (aDesktopEnvironment.equalsIgnoreAsciiCase("kde")) |