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
43aabb90
Kaydet (Commit)
43aabb90
authored
Nis 12, 2012
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
partially revert the editeng singleton stuff to get build to complete
üst
99deffbe
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
6 additions
and
19 deletions
+6
-19
eerdll.hxx
editeng/inc/editeng/eerdll.hxx
+0
-1
core-test.cxx
editeng/qa/unit/core-test.cxx
+1
-1
eerdll.cxx
editeng/source/editeng/eerdll.cxx
+5
-14
Library_test.mk
test/Library_test.mk
+0
-1
bootstrapfixture.cxx
test/source/bootstrapfixture.cxx
+0
-2
No files found.
editeng/inc/editeng/eerdll.hxx
Dosyayı görüntüle @
43aabb90
...
...
@@ -53,7 +53,6 @@ public:
ResMgr
*
GetResMgr
()
const
{
return
pResMgr
;
}
GlobalEditData
*
GetGlobalData
()
const
{
return
pGlobalData
;
}
static
EditDLL
&
Get
();
EDITENG_DLLPUBLIC
static
void
Release
();
};
#define EE_DLL() EditDLL::Get()
...
...
editeng/qa/unit/core-test.cxx
Dosyayı görüntüle @
43aabb90
...
...
@@ -55,7 +55,7 @@ public:
void
testConstruction
();
CPPUNIT_TEST_SUITE
(
Test
);
CPPUNIT_TEST
(
testConstruction
);
//
CPPUNIT_TEST(testConstruction);
CPPUNIT_TEST_SUITE_END
();
private
:
...
...
editeng/source/editeng/eerdll.cxx
Dosyayı görüntüle @
43aabb90
...
...
@@ -72,27 +72,18 @@
#include <editeng/xmlcnitm.hxx>
#include <editeng/forbiddencharacterstable.hxx>
#include <editeng/justifyitem.hxx>
#include <boost/scoped_ptr.hpp>
#include <rtl/instance.hxx>
using
namespace
::
com
::
sun
::
star
;
namespace
{
boost
::
scoped_ptr
<
EditDLL
>
pDLL
;
}
EditDLL
&
EditDLL
::
Get
()
namespace
{
if
(
!
pDLL
)
pDLL
.
reset
(
new
EditDLL
);
return
*
pDLL
;
class
theEditDLL
:
public
rtl
::
Static
<
EditDLL
,
theEditDLL
>
{};
}
void
EditDLL
::
Release
()
EditDLL
&
EditDLL
::
Get
()
{
pDLL
.
res
et
();
return
theEditDLL
::
g
et
();
}
GlobalEditData
::
GlobalEditData
()
...
...
test/Library_test.mk
Dosyayı görüntüle @
43aabb90
...
...
@@ -42,7 +42,6 @@ $(eval $(call gb_Library_use_libraries,test,\
comphelper \
cppu \
cppuhelper \
editeng \
i18nisolang1 \
sal \
tl \
...
...
test/source/bootstrapfixture.cxx
Dosyayı görüntüle @
43aabb90
...
...
@@ -42,7 +42,6 @@
#include <vcl/svapp.hxx>
#include <tools/resmgr.hxx>
#include <unotools/syslocaleoptions.hxx>
#include <editeng/eerdll.hxx>
using
namespace
::
com
::
sun
::
star
;
...
...
@@ -108,7 +107,6 @@ void test::BootstrapFixture::setUp()
void
test
::
BootstrapFixture
::
tearDown
()
{
ucbhelper
::
ContentBroker
::
deinitialize
();
EditDLL
::
Release
();
test
::
BootstrapFixtureBase
::
tearDown
();
}
...
...
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