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
b6671e76
Kaydet (Commit)
b6671e76
authored
Ara 13, 2017
tarafından
Michael Stahl
Kaydeden (comit)
Jan Holesovsky
Kas 08, 2018
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
tools: reimplement SVLIBRARY macro & remove it from solar.h
Change-Id: I03f8f5fd656d62410821f2f2851f1c584c97d1f4
üst
e555553e
Hide whitespace changes
Inline
Side-by-side
Showing
15 changed files
with
29 additions
and
11 deletions
+29
-11
AbstractShapeFactory.cxx
chart2/source/view/main/AbstractShapeFactory.cxx
+1
-0
solar.h
include/tools/solar.h
+0
-10
svlibrary.h
include/tools/svlibrary.h
+15
-0
scabstdlg.cxx
sc/source/ui/attrdlg/scabstdlg.cxx
+1
-0
impex.cxx
sc/source/ui/docshell/impex.cxx
+1
-0
sdfilter.cxx
sd/source/filter/sdfilter.cxx
+1
-0
app.cxx
sfx2/source/appl/app.cxx
+1
-0
appinit.cxx
sfx2/source/appl/appinit.cxx
+1
-0
appserv.cxx
sfx2/source/appl/appserv.cxx
+1
-0
svtaccessiblefactory.cxx
svtools/source/misc/svtaccessiblefactory.cxx
+2
-0
sw-dialogs-test.cxx
sw/qa/unit/sw-dialogs-test.cxx
+1
-0
sw-dialogs-test_2.cxx
sw/qa/unit/sw-dialogs-test_2.cxx
+1
-0
fltini.cxx
sw/source/filter/basflt/fltini.cxx
+1
-0
accessibilityclient.cxx
toolkit/source/helper/accessibilityclient.cxx
+1
-1
FilterConfigCache.cxx
vcl/source/filter/FilterConfigCache.cxx
+1
-0
No files found.
chart2/source/view/main/AbstractShapeFactory.cxx
Dosyayı görüntüle @
b6671e76
...
...
@@ -30,6 +30,7 @@
#include <editeng/unoprnms.hxx>
#include <rtl/math.hxx>
#include <tools/svlibrary.h>
#include <svx/svdocirc.hxx>
#include <svx/svdopath.hxx>
#include <vcl/svapp.hxx>
...
...
include/tools/solar.h
Dosyayı görüntüle @
b6671e76
...
...
@@ -106,16 +106,6 @@ inline void DoubleToSVBT64( double n, SVBT64 p ) { p[0] = reinterpret_cast<s
#endif
#endif
#if defined(_WIN32)
#define SVLIBRARY( Base ) Base "lo.dll"
#elif defined MACOSX
#define SVLIBRARY( Base ) "lib" Base "lo.dylib"
#elif defined UNX
#define SVLIBRARY( Base ) "lib" Base "lo.so"
#else
#error unknown platform
#endif
#endif
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
include/tools/svlibrary.h
0 → 100644
Dosyayı görüntüle @
b6671e76
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
#ifndef SVLIBRARY
#define SVLIBRARY( Base ) SAL_MODULENAME( Base "lo" )
#include <osl/module.h>
#endif
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
sc/source/ui/attrdlg/scabstdlg.cxx
Dosyayı görüntüle @
b6671e76
...
...
@@ -20,6 +20,7 @@
#include <scabstdlg.hxx>
#include <osl/module.hxx>
#include <tools/svlibrary.h>
#include <rtl/ustrbuf.hxx>
typedef
ScAbstractDialogFactory
*
(
SAL_CALL
*
ScFuncPtrCreateDialogFactory
)();
...
...
sc/source/ui/docshell/impex.cxx
Dosyayı görüntüle @
b6671e76
...
...
@@ -54,6 +54,7 @@
#include <globstr.hrc>
#include <o3tl/safeint.hxx>
#include <tools/svlibrary.h>
#include <vcl/svapp.hxx>
#include <memory>
...
...
sd/source/filter/sdfilter.cxx
Dosyayı görüntüle @
b6671e76
...
...
@@ -22,6 +22,7 @@
#include <memory>
#include <osl/module.hxx>
#include <tools/svlibrary.h>
#include <sfx2/docfile.hxx>
#include <sfx2/viewfrm.hxx>
#include <sfx2/progress.hxx>
...
...
sfx2/source/appl/app.cxx
Dosyayı görüntüle @
b6671e76
...
...
@@ -24,6 +24,7 @@
#include <basic/basrdll.hxx>
#include <basic/sbmeth.hxx>
#include <basic/sbmod.hxx>
#include <tools/svlibrary.h>
#include <svtools/asynclink.hxx>
#include <svl/stritem.hxx>
#include <svl/eitem.hxx>
...
...
sfx2/source/appl/appinit.cxx
Dosyayı görüntüle @
b6671e76
...
...
@@ -27,6 +27,7 @@
#include <com/sun/star/lang/XServiceInfo.hpp>
#include <basic/sbdef.hxx>
#include <tools/svlibrary.h>
#include <svtools/soerr.hxx>
#include <svtools/strings.hrc>
#include <unotools/resmgr.hxx>
...
...
sfx2/source/appl/appserv.cxx
Dosyayı görüntüle @
b6671e76
...
...
@@ -57,6 +57,7 @@
#include <unotools/intlwrapper.hxx>
#include <unotools/configmgr.hxx>
#include <tools/svlibrary.h>
#include <tools/diagnose_ex.h>
#include <vcl/layout.hxx>
#include <svl/intitem.hxx>
...
...
svtools/source/misc/svtaccessiblefactory.cxx
Dosyayı görüntüle @
b6671e76
...
...
@@ -21,6 +21,8 @@
#include <svtaccessiblefactory.hxx>
#include <tools/svlibrary.h>
#include <osl/module.h>
namespace
svt
...
...
sw/qa/unit/sw-dialogs-test.cxx
Dosyayı görüntüle @
b6671e76
...
...
@@ -12,6 +12,7 @@
#include <rtl/bootstrap.hxx>
#include <rtl/strbuf.hxx>
#include <osl/file.hxx>
#include <tools/svlibrary.h>
#include <sfx2/app.hxx>
#include <vcl/abstdlg.hxx>
...
...
sw/qa/unit/sw-dialogs-test_2.cxx
Dosyayı görüntüle @
b6671e76
...
...
@@ -12,6 +12,7 @@
#include <rtl/bootstrap.hxx>
#include <rtl/strbuf.hxx>
#include <osl/file.hxx>
#include <tools/svlibrary.h>
#include <sfx2/app.hxx>
#include <vcl/abstdlg.hxx>
...
...
sw/source/filter/basflt/fltini.cxx
Dosyayı görüntüle @
b6671e76
...
...
@@ -22,6 +22,7 @@
#include <i18nlangtag/lang.h>
#include <i18nlangtag/languagetag.hxx>
#include <o3tl/any.hxx>
#include <tools/svlibrary.h>
#include <vcl/msgbox.hxx>
#include <svtools/parhtml.hxx>
#include <sot/storage.hxx>
...
...
toolkit/source/helper/accessibilityclient.cxx
Dosyayı görüntüle @
b6671e76
...
...
@@ -25,7 +25,7 @@
#include <osl/module.h>
#include <osl/diagnose.h>
#include <osl/mutex.hxx>
#include <tools/s
olar
.h>
#include <tools/s
vlibrary
.h>
#include <helper/accessibilityclient.hxx>
...
...
vcl/source/filter/FilterConfigCache.cxx
Dosyayı görüntüle @
b6671e76
...
...
@@ -21,6 +21,7 @@
#include <vcl/graphicfilter.hxx>
#include <unotools/configmgr.hxx>
#include <tools/svlibrary.h>
#include <com/sun/star/uno/Any.h>
#include <comphelper/processfactory.hxx>
#include <com/sun/star/uno/Exception.hpp>
...
...
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