diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2017-02-09 13:19:11 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2017-02-09 15:56:50 +0000 |
commit | b6a69585b00867005820c1dd94e10e0e6b545e2a (patch) | |
tree | 39c76e48dffcfbadd619cf7dc52bb9def0f85691 /sal/inc/backtraceasstring.hxx | |
parent | 6851074c8a515ec5a7856d4b744e3425c8829a29 (diff) |
Fold sal_detail_log_backtrace into sal_detail_log
...the latter is LO-privately exported from sal, so it should be OK to add one
more parameter to it.
Change-Id: If6bf3458433aac2cc8b4e0cbd1602306051a777b
Reviewed-on: https://gerrit.libreoffice.org/34080
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'sal/inc/backtraceasstring.hxx')
-rw-r--r-- | sal/inc/backtraceasstring.hxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sal/inc/backtraceasstring.hxx b/sal/inc/backtraceasstring.hxx index d15065a48ce8..cd9ce494f789 100644 --- a/sal/inc/backtraceasstring.hxx +++ b/sal/inc/backtraceasstring.hxx @@ -13,11 +13,12 @@ #include <sal/config.h> #include <rtl/ustring.hxx> +#include <sal/types.h> namespace osl { namespace detail { /// Build a debugging backtrace from current PC location. -OUString backtraceAsString(int maxNoStackFramesToDisplay); +OUString backtraceAsString(sal_uInt32 maxDepth); } } |