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
22e9379f
Kaydet (Commit)
22e9379f
authored
Eyl 05, 2002
tarafından
Vladimir Glazounov
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
#100000#
üst
747fc255
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
47 additions
and
14 deletions
+47
-14
macro_expander.cxx
cppuhelper/source/macro_expander.cxx
+10
-2
TextInputStream.cxx
io/source/TextInputStream/TextInputStream.cxx
+8
-2
makefile.mk
io/source/TextInputStream/makefile.mk
+3
-2
TextOutputStream.cxx
io/source/TextOutputStream/TextOutputStream.cxx
+5
-2
acceptor.cxx
io/source/acceptor/acceptor.cxx
+7
-2
makefile.mk
io/source/acceptor/makefile.mk
+6
-2
connector.cxx
io/source/connector/connector.cxx
+8
-2
No files found.
cppuhelper/source/macro_expander.cxx
Dosyayı görüntüle @
22e9379f
...
@@ -2,9 +2,9 @@
...
@@ -2,9 +2,9 @@
*
*
* $RCSfile: macro_expander.cxx,v $
* $RCSfile: macro_expander.cxx,v $
*
*
* $Revision: 1.
1
$
* $Revision: 1.
2
$
*
*
* last change: $Author:
dbo $ $Date: 2002-06-14 13:20:19
$
* last change: $Author:
vg $ $Date: 2002-09-05 16:13:52
$
*
*
* The Contents of this file are made available subject to the terms of
* The Contents of this file are made available subject to the terms of
* either of the following licenses
* either of the following licenses
...
@@ -62,7 +62,9 @@
...
@@ -62,7 +62,9 @@
#include <rtl/bootstrap.hxx>
#include <rtl/bootstrap.hxx>
#include <cppuhelper/factory.hxx>
#include <cppuhelper/factory.hxx>
#include <cppuhelper/implbase3.hxx>
#include <cppuhelper/compbase3.hxx>
#include <cppuhelper/compbase3.hxx>
#include <cppuhelper/component_context.hxx>
#include <com/sun/star/lang/XServiceInfo.hpp>
#include <com/sun/star/lang/XServiceInfo.hpp>
#include <com/sun/star/lang/XInitialization.hpp>
#include <com/sun/star/lang/XInitialization.hpp>
...
@@ -110,6 +112,12 @@ static Sequence< OUString > const & s_get_service_names()
...
@@ -110,6 +112,12 @@ static Sequence< OUString > const & s_get_service_names()
typedef
::
cppu
::
WeakComponentImplHelper3
<
typedef
::
cppu
::
WeakComponentImplHelper3
<
util
::
XMacroExpander
,
lang
::
XServiceInfo
,
lang
::
XInitialization
>
t_uno_impl
;
util
::
XMacroExpander
,
lang
::
XServiceInfo
,
lang
::
XInitialization
>
t_uno_impl
;
#if defined(MACOSX)
// Initialize static template data here to break circular reference to libstatic
cppu
::
ClassData3
cppu
::
WeakComponentImplHelper3
<
com
::
sun
::
star
::
util
::
XMacroExpander
,
com
::
sun
::
star
::
lang
::
XServiceInfo
,
com
::
sun
::
star
::
lang
::
XInitialization
>::
s_aCD
(
1
);
#endif
struct
mutex_holder
struct
mutex_holder
{
{
Mutex
m_mutex
;
Mutex
m_mutex
;
...
...
io/source/TextInputStream/TextInputStream.cxx
Dosyayı görüntüle @
22e9379f
...
@@ -2,9 +2,9 @@
...
@@ -2,9 +2,9 @@
*
*
* $RCSfile: TextInputStream.cxx,v $
* $RCSfile: TextInputStream.cxx,v $
*
*
* $Revision: 1.
7
$
* $Revision: 1.
8
$
*
*
* last change: $Author:
obo $ $Date: 2001-09-21 15:25:56
$
* last change: $Author:
vg $ $Date: 2002-09-05 16:10:42
$
*
*
* The Contents of this file are made available subject to the terms of
* The Contents of this file are made available subject to the terms of
* either of the following licenses
* either of the following licenses
...
@@ -91,6 +91,12 @@ using namespace ::com::sun::star::lang;
...
@@ -91,6 +91,12 @@ using namespace ::com::sun::star::lang;
using
namespace
::
com
::
sun
::
star
::
io
;
using
namespace
::
com
::
sun
::
star
::
io
;
using
namespace
::
com
::
sun
::
star
::
registry
;
using
namespace
::
com
::
sun
::
star
::
registry
;
#ifdef MACOSX
#include <com/sun/star/reflection/XInterfaceMemberTypeDescription.hpp>
ClassData3
cppu
::
WeakImplHelper3
<
com
::
sun
::
star
::
io
::
XTextInputStream
,
com
::
sun
::
star
::
io
::
XActiveDataSink
,
com
::
sun
::
star
::
lang
::
XServiceInfo
>::
s_aCD
(
1
);
typelib_TypeDescriptionReference
*
com
::
sun
::
star
::
uno
::
Sequence
<
unsigned
short
>::
s_pType
;
#endif
namespace
io_TextInputStream
namespace
io_TextInputStream
{
{
...
...
io/source/TextInputStream/makefile.mk
Dosyayı görüntüle @
22e9379f
...
@@ -2,9 +2,9 @@
...
@@ -2,9 +2,9 @@
#
#
# $RCSfile: makefile.mk,v $
# $RCSfile: makefile.mk,v $
#
#
# $Revision: 1.1
0
$
# $Revision: 1.1
1
$
#
#
# last change: $Author:
jbu $ $Date: 2001-06-29 16:44:02
$
# last change: $Author:
vg $ $Date: 2002-09-05 16:11:21
$
#
#
# The Contents of this file are made available subject to the terms of
# The Contents of this file are made available subject to the terms of
# either of the following licenses
# either of the following licenses
...
@@ -86,6 +86,7 @@ UNOTYPES= com.sun.star.io.XTextInputStream \
...
@@ -86,6 +86,7 @@ UNOTYPES= com.sun.star.io.XTextInputStream \
com.sun.star.lang.XTypeProvider
\
com.sun.star.lang.XTypeProvider
\
com.sun.star.lang.XServiceInfo
\
com.sun.star.lang.XServiceInfo
\
com.sun.star.registry.XRegistryKey
\
com.sun.star.registry.XRegistryKey
\
com.sun.star.reflection.XInterfaceMemberTypeDescription
\
com.sun.star.uno.XAggregation
\
com.sun.star.uno.XAggregation
\
com.sun.star.uno.XWeak
\
com.sun.star.uno.XWeak
\
com.sun.star.uno.XComponentContext
com.sun.star.uno.XComponentContext
...
...
io/source/TextOutputStream/TextOutputStream.cxx
Dosyayı görüntüle @
22e9379f
...
@@ -2,9 +2,9 @@
...
@@ -2,9 +2,9 @@
*
*
* $RCSfile: TextOutputStream.cxx,v $
* $RCSfile: TextOutputStream.cxx,v $
*
*
* $Revision: 1.
4
$
* $Revision: 1.
5
$
*
*
* last change: $Author:
obo $ $Date: 2001-09-21 15:26:46
$
* last change: $Author:
vg $ $Date: 2002-09-05 16:07:37
$
*
*
* The Contents of this file are made available subject to the terms of
* The Contents of this file are made available subject to the terms of
* either of the following licenses
* either of the following licenses
...
@@ -89,6 +89,9 @@ using namespace ::com::sun::star::lang;
...
@@ -89,6 +89,9 @@ using namespace ::com::sun::star::lang;
using
namespace
::
com
::
sun
::
star
::
io
;
using
namespace
::
com
::
sun
::
star
::
io
;
using
namespace
::
com
::
sun
::
star
::
registry
;
using
namespace
::
com
::
sun
::
star
::
registry
;
#ifdef MACOSX
ClassData3
cppu
::
WeakImplHelper3
<
com
::
sun
::
star
::
io
::
XTextOutputStream
,
com
::
sun
::
star
::
io
::
XActiveDataSource
,
com
::
sun
::
star
::
lang
::
XServiceInfo
>::
s_aCD
(
1
);
#endif
namespace
io_TextOutputStream
namespace
io_TextOutputStream
{
{
...
...
io/source/acceptor/acceptor.cxx
Dosyayı görüntüle @
22e9379f
...
@@ -2,9 +2,9 @@
...
@@ -2,9 +2,9 @@
*
*
* $RCSfile: acceptor.cxx,v $
* $RCSfile: acceptor.cxx,v $
*
*
* $Revision: 1.1
0
$
* $Revision: 1.1
1
$
*
*
* last change: $Author:
obo $ $Date: 2001-09-21 15:24:46
$
* last change: $Author:
vg $ $Date: 2002-09-05 16:08:53
$
*
*
* The Contents of this file are made available subject to the terms of
* The Contents of this file are made available subject to the terms of
* either of the following licenses
* either of the following licenses
...
@@ -82,6 +82,11 @@ using namespace ::com::sun::star::lang;
...
@@ -82,6 +82,11 @@ using namespace ::com::sun::star::lang;
using
namespace
::
com
::
sun
::
star
::
registry
;
using
namespace
::
com
::
sun
::
star
::
registry
;
using
namespace
::
com
::
sun
::
star
::
connection
;
using
namespace
::
com
::
sun
::
star
::
connection
;
#ifdef MACOSX
ClassData2
cppu
::
WeakImplHelper2
<
com
::
sun
::
star
::
connection
::
XAcceptor
,
com
::
sun
::
star
::
lang
::
XServiceInfo
>::
s_aCD
(
1
);
/*ClassData1 cppu::WeakImplHelper1<com::sun::star::connection::XConnection>::s_aCD(1);
ClassData2 cppu::WeakImplHelper2<com::sun::star::connection::XConnection, com::sun::star::connection::XConnectionBroadcaster>::s_aCD(1);*/
#endif
namespace
io_acceptor
namespace
io_acceptor
{
{
...
...
io/source/acceptor/makefile.mk
Dosyayı görüntüle @
22e9379f
...
@@ -2,9 +2,9 @@
...
@@ -2,9 +2,9 @@
#
#
# $RCSfile: makefile.mk,v $
# $RCSfile: makefile.mk,v $
#
#
# $Revision: 1.
8
$
# $Revision: 1.
9
$
#
#
# last change: $Author:
jbu $ $Date: 2001-06-22 16:32:55
$
# last change: $Author:
vg $ $Date: 2002-09-05 16:09:43
$
#
#
# The Contents of this file are made available subject to the terms of
# The Contents of this file are made available subject to the terms of
# either of the following licenses
# either of the following licenses
...
@@ -94,6 +94,10 @@ SHL1STDLIBS= \
...
@@ -94,6 +94,10 @@ SHL1STDLIBS= \
$(CPPULIB)
\
$(CPPULIB)
\
$(CPPUHELPERLIB)
$(CPPUHELPERLIB)
.IF
"$(OS)"
==
"MACOSX"
SHL1STDLIBS
+=
-lconnectr
.ENDIF
SHL1DEPN
=
SHL1DEPN
=
SHL1IMPLIB
=
i
$(TARGET)
SHL1IMPLIB
=
i
$(TARGET)
SHL1LIBS
=
$(SLB)$/$(TARGET)
.lib
SHL1LIBS
=
$(SLB)$/$(TARGET)
.lib
...
...
io/source/connector/connector.cxx
Dosyayı görüntüle @
22e9379f
...
@@ -2,9 +2,9 @@
...
@@ -2,9 +2,9 @@
*
*
* $RCSfile: connector.cxx,v $
* $RCSfile: connector.cxx,v $
*
*
* $Revision: 1.1
0
$
* $Revision: 1.1
1
$
*
*
* last change: $Author:
obo $ $Date: 2001-09-21 15:24:04
$
* last change: $Author:
vg $ $Date: 2002-09-05 16:12:35
$
*
*
* The Contents of this file are made available subject to the terms of
* The Contents of this file are made available subject to the terms of
* either of the following licenses
* either of the following licenses
...
@@ -83,6 +83,12 @@ using namespace ::com::sun::star::lang;
...
@@ -83,6 +83,12 @@ using namespace ::com::sun::star::lang;
using
namespace
::
com
::
sun
::
star
::
registry
;
using
namespace
::
com
::
sun
::
star
::
registry
;
using
namespace
::
com
::
sun
::
star
::
connection
;
using
namespace
::
com
::
sun
::
star
::
connection
;
#ifdef MACOSX
ClassData2
WeakImplHelper2
<
::
com
::
sun
::
star
::
connection
::
XConnection
,
::
com
::
sun
::
star
::
connection
::
XConnectionBroadcaster
>::
s_aCD
(
1
);
ClassData2
WeakImplHelper2
<
com
::
sun
::
star
::
connection
::
XConnector
,
com
::
sun
::
star
::
lang
::
XServiceInfo
>::
s_aCD
(
1
);
ClassData1
WeakImplHelper1
<
com
::
sun
::
star
::
connection
::
XConnection
>::
s_aCD
(
1
);
#endif
namespace
stoc_connector
namespace
stoc_connector
{
{
rtl_StandardModuleCount
g_moduleCount
=
MODULE_COUNT_INIT
;
rtl_StandardModuleCount
g_moduleCount
=
MODULE_COUNT_INIT
;
...
...
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