Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
core
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
LibreOffice
core
Commits
c6ffe06b
Kaydet (Commit)
c6ffe06b
authored
Agu 11, 2011
tarafından
Kohei Yoshida
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Let's not use macros for mere forward declarations.
This macro also messed up static analysis of slickedit.
üst
44cc719a
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
51 additions
and
18 deletions
+51
-18
fmpage.hxx
svx/inc/svx/fmpage.hxx
+5
-1
fmsearch.hxx
svx/inc/svx/fmsearch.hxx
+5
-1
fmview.hxx
svx/inc/svx/fmview.hxx
+8
-2
fmitems.hxx
svx/source/inc/fmitems.hxx
+6
-3
fmpgeimp.hxx
svx/source/inc/fmpgeimp.hxx
+9
-4
fmundo.hxx
svx/source/inc/fmundo.hxx
+6
-3
fmvwimp.hxx
svx/source/inc/fmvwimp.hxx
+12
-4
No files found.
svx/inc/svx/fmpage.hxx
Dosyayı görüntüle @
c6ffe06b
...
@@ -37,7 +37,11 @@ class StarBASIC;
...
@@ -37,7 +37,11 @@ class StarBASIC;
class
FmFormModel
;
class
FmFormModel
;
class
FmFormPageImpl
;
// contains a list of all forms
class
FmFormPageImpl
;
// contains a list of all forms
FORWARD_DECLARE_INTERFACE
(
container
,
XNameContainer
)
namespace
com
{
namespace
sun
{
namespace
star
{
namespace
container
{
class
XNameContainer
;
}
}}}
class
SdrView
;
class
SdrView
;
class
SfxJSArray
;
class
SfxJSArray
;
...
...
svx/inc/svx/fmsearch.hxx
Dosyayı görüntüle @
c6ffe06b
...
@@ -49,7 +49,11 @@
...
@@ -49,7 +49,11 @@
#include <tools/string.hxx>
#include <tools/string.hxx>
#include "svx/svxdllapi.h"
#include "svx/svxdllapi.h"
FORWARD_DECLARE_INTERFACE
(
util
,
XNumberFormatsSupplier
)
namespace
com
{
namespace
sun
{
namespace
star
{
namespace
util
{
class
XNumberFormatsSupplier
;
}
}}}
// ===================================================================================================
// ===================================================================================================
// Hilfsmethoden
// Hilfsmethoden
...
...
svx/inc/svx/fmview.hxx
Dosyayı görüntüle @
c6ffe06b
...
@@ -33,8 +33,14 @@
...
@@ -33,8 +33,14 @@
#include <comphelper/uno3.hxx>
#include <comphelper/uno3.hxx>
#include "svx/svxdllapi.h"
#include "svx/svxdllapi.h"
FORWARD_DECLARE_INTERFACE
(
util
,
XNumberFormats
)
namespace
com
{
namespace
sun
{
namespace
star
{
FORWARD_DECLARE_INTERFACE
(
beans
,
XPropertySet
)
namespace
beans
{
class
XPropertySet
;
}
namespace
util
{
class
XNumberFormats
;
}
}}}
class
OutputDevice
;
class
OutputDevice
;
class
FmFormModel
;
class
FmFormModel
;
...
...
svx/source/inc/fmitems.hxx
Dosyayı görüntüle @
c6ffe06b
...
@@ -31,9 +31,12 @@
...
@@ -31,9 +31,12 @@
#include <svl/poolitem.hxx>
#include <svl/poolitem.hxx>
#include <comphelper/uno3.hxx>
#include <comphelper/uno3.hxx>
// FORWARD_DECLARE_INTERFACE(awt,XControlContainer)
FORWARD_DECLARE_INTERFACE
(
uno
,
Any
)
namespace
com
{
namespace
sun
{
namespace
star
{
// class ::com::sun::star::uno::Any;
namespace
uno
{
class
Any
;
}
}}}
//==================================================================
//==================================================================
class
FmInterfaceItem
:
public
SfxPoolItem
class
FmInterfaceItem
:
public
SfxPoolItem
...
...
svx/source/inc/fmpgeimp.hxx
Dosyayı görüntüle @
c6ffe06b
...
@@ -49,10 +49,15 @@ class FmFormObj;
...
@@ -49,10 +49,15 @@ class FmFormObj;
class
FmFormPage
;
class
FmFormPage
;
class
SdrObject
;
class
SdrObject
;
//FORWARD_DECLARE_INTERFACE(uno,Reference)
namespace
com
{
namespace
sun
{
namespace
star
{
FORWARD_DECLARE_INTERFACE
(
io
,
XObjectOutputStream
)
namespace
container
{
FORWARD_DECLARE_INTERFACE
(
io
,
XObjectInputStream
)
class
XIndexContainer
;
FORWARD_DECLARE_INTERFACE
(
container
,
XIndexContainer
)
}
namespace
io
{
class
XObjectOutputStream
;
class
XObjectInputStream
;
}
}}}
class
SdrObjList
;
class
SdrObjList
;
...
...
svx/source/inc/fmundo.hxx
Dosyayı görüntüle @
c6ffe06b
...
@@ -57,9 +57,12 @@ class FmFormObj;
...
@@ -57,9 +57,12 @@ class FmFormObj;
class
SdrObject
;
class
SdrObject
;
class
FmXFormView
;
class
FmXFormView
;
FORWARD_DECLARE_INTERFACE
(
awt
,
XControl
)
namespace
com
{
namespace
sun
{
namespace
star
{
FORWARD_DECLARE_INTERFACE
(
awt
,
XControlContainer
)
namespace
awt
{
//FORWARD_DECLARE_INTERFACE(uno,Reference)
class
XControl
;
class
XControlContainer
;;
}
}}}
//==================================================================
//==================================================================
// FmUndoPropertyAction
// FmUndoPropertyAction
...
...
svx/source/inc/fmvwimp.hxx
Dosyayı görüntüle @
c6ffe06b
...
@@ -68,10 +68,18 @@ class OutputDevice;
...
@@ -68,10 +68,18 @@ class OutputDevice;
class
SdrUnoObj
;
class
SdrUnoObj
;
class
SdrView
;
class
SdrView
;
FORWARD_DECLARE_INTERFACE
(
awt
,
XControl
)
namespace
com
{
namespace
sun
{
namespace
star
{
FORWARD_DECLARE_INTERFACE
(
awt
,
XWindow
)
namespace
awt
{
FORWARD_DECLARE_INTERFACE
(
beans
,
XPropertySet
)
class
XControl
;
FORWARD_DECLARE_INTERFACE
(
util
,
XNumberFormats
)
class
XWindow
;
}
namespace
beans
{
class
XPropertySet
;
}
namespace
util
{
class
XNumberFormats
;
}
}}}
class
FmXFormView
;
class
FmXFormView
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment