diff options
-rw-r--r-- | desktop/source/pkgchk/unopkg/unopkg_shared.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/desktop/source/pkgchk/unopkg/unopkg_shared.h b/desktop/source/pkgchk/unopkg/unopkg_shared.h index f86b3248c0d5..df03f594331e 100644 --- a/desktop/source/pkgchk/unopkg/unopkg_shared.h +++ b/desktop/source/pkgchk/unopkg/unopkg_shared.h @@ -38,10 +38,12 @@ struct OptionInfo bool m_has_argument; }; -struct LockFileException : public css::uno::Exception +struct LockFileException { explicit LockFileException(OUString const & sMessage) : - css::uno::Exception(sMessage, css::uno::Reference< css::uno::XInterface > ()) {} + Message(sMessage) {} + + OUString Message; }; |