diff options
author | Norbert Thiebaud <nthiebaud@gmail.com> | 2013-11-11 21:38:29 -0600 |
---|---|---|
committer | Norbert Thiebaud <nthiebaud@gmail.com> | 2013-11-11 22:37:25 -0600 |
commit | cde4fdb2d0980df086280d3633f028cfc39afa0f (patch) | |
tree | ecdc4ff242f25468ef59364b3dcfd9e3445ede3d /basctl | |
parent | 8b308d510e656c6d165d3bcd2f42029f34e9498e (diff) |
basctl: include <> for external includes
Change-Id: I1897c587c02c5b50e6e8a7bf70467233be871878
Diffstat (limited to 'basctl')
-rw-r--r-- | basctl/source/basicide/basicrenderable.cxx | 10 | ||||
-rw-r--r-- | basctl/source/basicide/basicrenderable.hxx | 6 | ||||
-rw-r--r-- | basctl/source/basicide/baside2.hxx | 8 | ||||
-rw-r--r-- | basctl/source/basicide/baside2b.cxx | 12 | ||||
-rw-r--r-- | basctl/source/basicide/basobj2.cxx | 2 | ||||
-rw-r--r-- | basctl/source/basicide/bastype2.cxx | 2 | ||||
-rw-r--r-- | basctl/source/basicide/bastype2.hxx | 2 | ||||
-rw-r--r-- | basctl/source/basicide/bastype3.cxx | 2 | ||||
-rw-r--r-- | basctl/source/basicide/moduldl2.cxx | 8 | ||||
-rw-r--r-- | basctl/source/basicide/moduldlg.cxx | 2 | ||||
-rw-r--r-- | basctl/source/basicide/moduldlg.hxx | 2 | ||||
-rw-r--r-- | basctl/source/inc/dlgedpage.hxx | 2 |
12 files changed, 29 insertions, 29 deletions
diff --git a/basctl/source/basicide/basicrenderable.cxx b/basctl/source/basicide/basicrenderable.cxx index 5200c8c8fa73..48be546eac97 100644 --- a/basctl/source/basicide/basicrenderable.cxx +++ b/basctl/source/basicide/basicrenderable.cxx @@ -21,11 +21,11 @@ #include "bastypes.hxx" #include "basidesh.hrc" -#include "com/sun/star/awt/XDevice.hpp" -#include "toolkit/awt/vclxdevice.hxx" -#include "vcl/print.hxx" -#include "tools/multisel.hxx" -#include "tools/resary.hxx" +#include <com/sun/star/awt/XDevice.hpp> +#include <toolkit/awt/vclxdevice.hxx> +#include <vcl/print.hxx> +#include <tools/multisel.hxx> +#include <tools/resary.hxx> namespace basctl { diff --git a/basctl/source/basicide/basicrenderable.hxx b/basctl/source/basicide/basicrenderable.hxx index b53c92763057..076fea757184 100644 --- a/basctl/source/basicide/basicrenderable.hxx +++ b/basctl/source/basicide/basicrenderable.hxx @@ -19,10 +19,10 @@ #ifndef BASCTL_BASICRENDERABLE_HXX #define BASCTL_BASICRENDERABLE_HXX -#include "com/sun/star/view/XRenderable.hpp" -#include "cppuhelper/compbase1.hxx" +#include <com/sun/star/view/XRenderable.hpp> +#include <cppuhelper/compbase1.hxx> -#include "vcl/print.hxx" +#include <vcl/print.hxx> namespace basctl { diff --git a/basctl/source/basicide/baside2.hxx b/basctl/source/basicide/baside2.hxx index 68b937e9d97a..a1e23ba74a7f 100644 --- a/basctl/source/basicide/baside2.hxx +++ b/basctl/source/basicide/baside2.hxx @@ -41,8 +41,8 @@ class SvxSearchItem; #include <vcl/split.hxx> #include <svl/lstner.hxx> #include <svtools/colorcfg.hxx> -#include "vcl/lstbox.hxx" -#include "vcl/scrbar.hxx" +#include <vcl/lstbox.hxx> +#include <vcl/scrbar.hxx> #include <sfx2/progress.hxx> #include <unotools/options.hxx> @@ -53,12 +53,12 @@ class SvxSearchItem; #include <vcl/textdata.hxx> #include <basic/codecompletecache.hxx> -#include "com/sun/star/reflection/XIdlClass.hpp" +#include <com/sun/star/reflection/XIdlClass.hpp> #include <comphelper/namedvaluecollection.hxx> #include <comphelper/processfactory.hxx> #include <comphelper/syntaxhighlight.hxx> #include <comphelper/configurationhelper.hxx> -#include "com/sun/star/reflection/XIdlReflection.hpp" +#include <com/sun/star/reflection/XIdlReflection.hpp> namespace com { namespace sun { namespace star { namespace beans { class XMultiPropertySet; diff --git a/basctl/source/basicide/baside2b.cxx b/basctl/source/basicide/baside2b.cxx index d9316feccb6e..87556d88a809 100644 --- a/basctl/source/basicide/baside2b.cxx +++ b/basctl/source/basicide/baside2b.cxx @@ -17,7 +17,7 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ -#include "sal/config.h" +#include <sal/config.h> #include <cassert> @@ -47,15 +47,15 @@ #include <svtools/textwindowpeer.hxx> #include <tools/stream.hxx> #include <comphelper/syntaxhighlight.hxx> -#include "svtools/treelistentry.hxx" +#include <svtools/treelistentry.hxx> #include <vcl/taskpanelist.hxx> #include <vcl/help.hxx> #include <vector> -#include "com/sun/star/reflection/XInterfaceMemberTypeDescription.hpp" -#include "com/sun/star/reflection/XIdlMethod.hpp" -#include "com/sun/star/reflection/XIdlField.hpp" -#include "com/sun/star/uno/Exception.hpp" +#include <com/sun/star/reflection/XInterfaceMemberTypeDescription.hpp> +#include <com/sun/star/reflection/XIdlMethod.hpp> +#include <com/sun/star/reflection/XIdlField.hpp> +#include <com/sun/star/uno/Exception.hpp> namespace basctl { diff --git a/basctl/source/basicide/basobj2.cxx b/basctl/source/basicide/basobj2.cxx index 272795c1db34..be60543041db 100644 --- a/basctl/source/basicide/basobj2.cxx +++ b/basctl/source/basicide/basobj2.cxx @@ -42,7 +42,7 @@ #include <vector> #include <algorithm> #include <memory> -#include "basic/basmgr.hxx" +#include <basic/basmgr.hxx> namespace basctl { diff --git a/basctl/source/basicide/bastype2.cxx b/basctl/source/basicide/bastype2.cxx index c3b0908a97aa..cb4997faa32d 100644 --- a/basctl/source/basicide/bastype2.cxx +++ b/basctl/source/basicide/bastype2.cxx @@ -36,7 +36,7 @@ #include <tools/diagnose_ex.h> #include <basic/sbx.hxx> #include <svtools/imagemgr.hxx> -#include "svtools/treelistentry.hxx" +#include <svtools/treelistentry.hxx> #include <com/sun/star/script/XLibraryContainer.hpp> #include <com/sun/star/script/XLibraryContainerPassword.hpp> #include <com/sun/star/frame/ModuleManager.hpp> diff --git a/basctl/source/basicide/bastype2.hxx b/basctl/source/basicide/bastype2.hxx index 4981a569817d..0484ea5b1852 100644 --- a/basctl/source/basicide/bastype2.hxx +++ b/basctl/source/basicide/bastype2.hxx @@ -22,7 +22,7 @@ #include "doceventnotifier.hxx" #include <memory> -#include "tools/solar.h" +#include <tools/solar.h> #include <svtools/treelistbox.hxx> #include <svl/lstner.hxx> diff --git a/basctl/source/basicide/bastype3.cxx b/basctl/source/basicide/bastype3.cxx index 54c5507c830c..d48608d457c9 100644 --- a/basctl/source/basicide/bastype3.cxx +++ b/basctl/source/basicide/bastype3.cxx @@ -30,7 +30,7 @@ #include <com/sun/star/script/XLibraryContainerPassword.hpp> #include <deque> #include <sfx2/docfac.hxx> -#include "svtools/treelistentry.hxx" +#include <svtools/treelistentry.hxx> namespace basctl { diff --git a/basctl/source/basicide/moduldl2.cxx b/basctl/source/basicide/moduldl2.cxx index 14f2fcee178a..f4d5bad8b326 100644 --- a/basctl/source/basicide/moduldl2.cxx +++ b/basctl/source/basicide/moduldl2.cxx @@ -33,7 +33,7 @@ #include <sbxitem.hxx> #include <basdoc.hxx> #include <ucbhelper/content.hxx> -#include "rtl/uri.hxx" +#include <rtl/uri.hxx> #include <sfx2/app.hxx> #include <sfx2/dinfdlg.hxx> #include <sfx2/dispatch.hxx> @@ -41,7 +41,7 @@ #include <tools/urlobj.hxx> #include <tools/diagnose_ex.h> #include <svtools/svlbitm.hxx> -#include "svtools/treelistentry.hxx" +#include <svtools/treelistentry.hxx> #include <sot/storage.hxx> #include <com/sun/star/io/Pipe.hpp> @@ -55,9 +55,9 @@ #include <com/sun/star/script/XLibraryContainerExport.hpp> #include <com/sun/star/task/InteractionHandler.hpp> #include <com/sun/star/ucb/SimpleFileAccess.hpp> -#include "com/sun/star/ucb/XCommandEnvironment.hpp" +#include <com/sun/star/ucb/XCommandEnvironment.hpp> #include <com/sun/star/ucb/NameClash.hpp> -#include "com/sun/star/packages/manifest/ManifestWriter.hpp" +#include <com/sun/star/packages/manifest/ManifestWriter.hpp> #include <unotools/pathoptions.hxx> #include <comphelper/processfactory.hxx> diff --git a/basctl/source/basicide/moduldlg.cxx b/basctl/source/basicide/moduldlg.cxx index 9cde52a1a544..5cc8c5d38d72 100644 --- a/basctl/source/basicide/moduldlg.cxx +++ b/basctl/source/basicide/moduldlg.cxx @@ -39,7 +39,7 @@ #include <vcl/msgbox.hxx> #include <tools/diagnose_ex.h> #include <xmlscript/xmldlg_imexp.hxx> -#include "svtools/treelistentry.hxx" +#include <svtools/treelistentry.hxx> namespace basctl { diff --git a/basctl/source/basicide/moduldlg.hxx b/basctl/source/basicide/moduldlg.hxx index 45659bfb1236..7ddb2d47b434 100644 --- a/basctl/source/basicide/moduldlg.hxx +++ b/basctl/source/basicide/moduldlg.hxx @@ -30,7 +30,7 @@ #include <svtools/svtabbx.hxx> #include <vcl/tabdlg.hxx> #include <vcl/tabpage.hxx> -#include "com/sun/star/task/XInteractionHandler.hpp" +#include <com/sun/star/task/XInteractionHandler.hpp> #include <vcl/tabctrl.hxx> #include <vcl/lstbox.hxx> diff --git a/basctl/source/inc/dlgedpage.hxx b/basctl/source/inc/dlgedpage.hxx index 1c5dee703a8c..35ea51651bf0 100644 --- a/basctl/source/inc/dlgedpage.hxx +++ b/basctl/source/inc/dlgedpage.hxx @@ -20,7 +20,7 @@ #ifndef BASCTL_DLGEDPAGE_HXX #define BASCTL_DLGEDPAGE_HXX -#include "svx/svdpage.hxx" +#include <svx/svdpage.hxx> namespace basctl { |