fix baseline build (old cairo) - 'cairo_rectangle_int_t' does not name a type
[LibreOffice.git] / sc / source / ui / attrdlg / scuiexp.cxx
blob374e8ad74d15e7636db03ef4917a101818f22267
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #undef SC_DLLIMPLEMENTATION
22 #include "scdlgfact.hxx"
23 #include "corodlg.hxx"
24 #include "condformatmgr.hxx"
25 #include "dapitype.hxx"
26 #include "dapidata.hxx"
27 #include "datafdlg.hxx"
28 #include "delcodlg.hxx"
29 #include "delcldlg.hxx"
30 #include "dpgroupdlg.hxx"
31 #include "filldlg.hxx"
32 #include "groupdlg.hxx"
33 #include "linkarea.hxx"
34 #include "lbseldlg.hxx"
35 #include "inscldlg.hxx"
36 #include "instbdlg.hxx"
37 #include "inscodlg.hxx"
38 #include "mtrindlg.hxx"
39 #include "mvtabdlg.hxx"
40 #include "namecrea.hxx"
41 #include "namepast.hxx"
42 #include "pfiltdlg.hxx"
43 #include "pvfundlg.hxx"
44 #include "shtabdlg.hxx"
45 #include "scendlg.hxx"
46 #include "scuiasciiopt.hxx"
47 #include "scuiautofmt.hxx"
48 #include "scuiimoptdlg.hxx"
49 #include "sortdlg.hxx"
50 #include "strindlg.hxx"
51 #include "tabbgcolordlg.hxx"
52 #include "textimportoptions.hxx"
53 #include <sal/types.h>
55 namespace scui
57 static ScAbstractDialogFactory_Impl* pFactory=NULL;
58 ScAbstractDialogFactory_Impl* GetFactory()
60 if ( !pFactory )
61 pFactory = new ScAbstractDialogFactory_Impl;
62 //if ( !pSwResMgr)
63 // ScDialogsResMgr::GetResMgr();
64 return pFactory;
68 extern "C"
70 SAL_DLLPUBLIC_EXPORT ScAbstractDialogFactory* ScCreateDialogFactory()
72 return ::scui::GetFactory();
76 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */