diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-04-27 18:24:44 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-04-28 10:21:12 +0200 |
commit | b9bcc9ff9fc6b639e2cf1760bb408c837418be4c (patch) | |
tree | 6cbfb11787a94710f84d59b3eb9e3a7bb91da622 | |
parent | e8db4aacd3208dbc8e9d66cfb56b31fa6417eb87 (diff) |
DBG_PRINT_ENTRY expects a 4th arg of type int
Change-Id: Id89f3436d9f9e142d8845381b483bdf8697dd1da
-rw-r--r-- | fpicker/source/aqua/SalAquaFilePicker.mm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fpicker/source/aqua/SalAquaFilePicker.mm b/fpicker/source/aqua/SalAquaFilePicker.mm index 1e0a658603ed..9c36c5bf6402 100644 --- a/fpicker/source/aqua/SalAquaFilePicker.mm +++ b/fpicker/source/aqua/SalAquaFilePicker.mm @@ -255,7 +255,7 @@ sal_Int16 SAL_CALL SalAquaFilePicker::execute() throw( uno::RuntimeException ) void SAL_CALL SalAquaFilePicker::setMultiSelectionMode( sal_Bool bMode ) throw( uno::RuntimeException ) { - DBG_PRINT_ENTRY(CLASS_NAME, __func__, "multiSelectable?", bMode); + DBG_PRINT_ENTRY(CLASS_NAME, __func__, "multiSelectable?", int(bMode)); SolarMutexGuard aGuard; |