View | Details | Raw Unified | Return to issue 17803
Collapse All | Expand All

(-)desktop/source/app/app.cxx (-15 / +16 lines)
Lines 295-314 Link Here
295
using namespace vos;
295
using namespace vos;
296
using namespace rtl;
296
using namespace rtl;
297
297
298
namespace css = ::com::sun::star;
298
//Gives an ICE with MSVC6
299
//namespace css = ::com::sun::star;
299
300
300
using namespace css::uno;
301
using namespace ::com::sun::star::uno;
301
using namespace css::util;
302
using namespace ::com::sun::star::util;
302
using namespace css::lang;
303
using namespace ::com::sun::star::lang;
303
using namespace css::beans;
304
using namespace ::com::sun::star::beans;
304
//using namespace ::com::sun::star::bridge;
305
//using namespace ::com::sun::star::bridge;
305
using namespace css::frame;
306
using namespace ::com::sun::star::frame;
306
using namespace css::document;
307
using namespace ::com::sun::star::document;
307
using namespace css::view;
308
using namespace ::com::sun::star::view;
308
using namespace css::task;
309
using namespace ::com::sun::star::task;
309
using namespace css::system;
310
using namespace ::com::sun::star::system;
310
using namespace css::ui::dialogs;
311
using namespace ::com::sun::star::ui::dialogs;
311
using namespace css::container;
312
using namespace ::com::sun::star::container;
312
313
313
314
314
ResMgr*                    desktop::Desktop::pResMgr = 0;
315
ResMgr*                    desktop::Desktop::pResMgr = 0;
Lines 1912-1924 Link Here
1912
                    // we ignore it and continue with the next item from the list
1913
                    // we ignore it and continue with the next item from the list
1913
                    // when recovery and session mangement are seperated, each mechanism
1914
                    // when recovery and session mangement are seperated, each mechanism
1914
                    // should provide meaningful feedback.
1915
                    // should provide meaningful feedback.
1915
                    catch (css::lang::IllegalArgumentException)
1916
                    catch (::com::sun::star::lang::IllegalArgumentException)
1916
                    {
1917
                    {
1917
                    }
1918
                    }
1918
                    catch (css::io::IOException)
1919
                    catch (::com::sun::star::io::IOException)
1919
                    {
1920
                    {
1920
                    }
1921
                    }
1921
                    catch (css::uno::RuntimeException)
1922
                    catch (::com::sun::star::uno::RuntimeException)
1922
                    {
1923
                    {
1923
                    }
1924
                    }
1924
                    
1925
                    

Return to issue 17803