bump product version to 5.0.4.1
[LibreOffice.git] / cui / source / factory / cuiexp.cxx
blob754d8b47a0925d8f17461b67cebe389499826504
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 #include "sfx2/basedlgs.hxx"
21 #include "cuigaldlg.hxx"
22 #include "hlmarkwn.hxx"
23 #include "srchxtra.hxx"
24 #include "cuisrchdlg.hxx"
25 #include "transfrm.hxx"
26 #include "labdlg.hxx"
27 #include "cuitbxform.hxx"
28 #include "optdict.hxx"
29 #include "dlgname.hxx"
30 #include "cuiimapwnd.hxx"
31 #include "multipat.hxx"
32 #include "cuifmsearch.hxx"
33 #include "cuigrfflt.hxx"
34 #include "cuitabarea.hxx"
35 #include "insdlg.hxx"
36 #include "pastedlg.hxx"
37 #include "linkdlg.hxx"
38 #include "postdlg.hxx"
39 #include "passwdomdlg.hxx"
40 #include "cuihyperdlg.hxx"
41 #include "selector.hxx"
42 #include "SpellDialog.hxx"
43 #include "zoom.hxx"
44 #include "showcols.hxx"
45 #include "hyphen.hxx"
46 #include "thesdlg.hxx"
47 #include "hangulhanjadlg.hxx"
48 #include "dstribut.hxx"
49 #include "dlgfact.hxx"
50 #include "sal/types.h"
52 namespace cui
54 static AbstractDialogFactory_Impl* pFactory=NULL;
55 AbstractDialogFactory_Impl* GetFactory()
57 if ( !pFactory )
58 pFactory = new AbstractDialogFactory_Impl;
59 return pFactory;
63 extern "C"
65 SAL_DLLPUBLIC_EXPORT VclAbstractDialogFactory* CreateDialogFactory()
67 return ::cui::GetFactory();
71 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */