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
a8e35884
Kaydet (Commit)
a8e35884
authored
Şub 18, 2012
tarafından
Thomas Arnhold
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
xmloff: use ::comphelper::UStringLess instead of less_functor
üst
a8a38888
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
2 additions
and
38 deletions
+2
-38
xmltexti.hxx
sw/source/filter/xml/xmltexti.hxx
+0
-1
Package_inc.mk
xmloff/Package_inc.mk
+0
-1
functional.hxx
xmloff/inc/functional.hxx
+0
-30
txtimp.hxx
xmloff/inc/xmloff/txtimp.hxx
+0
-3
MetaTContext.hxx
xmloff/source/transform/MetaTContext.hxx
+2
-3
No files found.
sw/source/filter/xml/xmltexti.hxx
Dosyayı görüntüle @
a8e35884
...
@@ -29,7 +29,6 @@
...
@@ -29,7 +29,6 @@
#define _XMLTEXTI_HXX
#define _XMLTEXTI_HXX
#include <xmloff/txtimp.hxx>
#include <xmloff/txtimp.hxx>
#include <xmloff/functional.hxx>
class
XMLRedlineImportHelper
;
class
XMLRedlineImportHelper
;
class
SvXMLImport
;
class
SvXMLImport
;
...
...
xmloff/Package_inc.mk
Dosyayı görüntüle @
a8e35884
...
@@ -76,7 +76,6 @@ $(eval $(call gb_Package_add_file,xmloff_inc,inc/xmloff/families.hxx,xmloff/fami
...
@@ -76,7 +76,6 @@ $(eval $(call gb_Package_add_file,xmloff_inc,inc/xmloff/families.hxx,xmloff/fami
$(eval $(call gb_Package_add_file,xmloff_inc,inc/xmloff/formlayerexport.hxx,xmloff/formlayerexport.hxx))
$(eval $(call gb_Package_add_file,xmloff_inc,inc/xmloff/formlayerexport.hxx,xmloff/formlayerexport.hxx))
$(eval $(call gb_Package_add_file,xmloff_inc,inc/xmloff/formlayerimport.hxx,xmloff/formlayerimport.hxx))
$(eval $(call gb_Package_add_file,xmloff_inc,inc/xmloff/formlayerimport.hxx,xmloff/formlayerimport.hxx))
$(eval $(call gb_Package_add_file,xmloff_inc,inc/xmloff/formsimp.hxx,xmloff/formsimp.hxx))
$(eval $(call gb_Package_add_file,xmloff_inc,inc/xmloff/formsimp.hxx,xmloff/formsimp.hxx))
$(eval $(call gb_Package_add_file,xmloff_inc,inc/xmloff/functional.hxx,xmloff/functional.hxx))
$(eval $(call gb_Package_add_file,xmloff_inc,inc/xmloff/i18nmap.hxx,xmloff/i18nmap.hxx))
$(eval $(call gb_Package_add_file,xmloff_inc,inc/xmloff/i18nmap.hxx,xmloff/i18nmap.hxx))
$(eval $(call gb_Package_add_file,xmloff_inc,inc/xmloff/maptype.hxx,xmloff/maptype.hxx))
$(eval $(call gb_Package_add_file,xmloff_inc,inc/xmloff/maptype.hxx,xmloff/maptype.hxx))
$(eval $(call gb_Package_add_file,xmloff_inc,inc/xmloff/nmspmap.hxx,xmloff/nmspmap.hxx))
$(eval $(call gb_Package_add_file,xmloff_inc,inc/xmloff/nmspmap.hxx,xmloff/nmspmap.hxx))
...
...
xmloff/inc/functional.hxx
deleted
100644 → 0
Dosyayı görüntüle @
a8a38888
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
#ifndef _XMLOFF_FUNCTIONAL_HXX
#define _XMLOFF_FUNCTIONAL_HXX
#include <rtl/ustring.hxx>
/* THIS HEADER IS DEPRECATED. USE comphelper/stl_types.hxx INSTEAD!!! */
/** @#file
*
* re-implement STL functors as needed
*
* The standard comparison operators from the STL cause warnings with
* several compilers about our sal_Bool (=unsigned char) being
* converted to bool (C++ bool). We wish to avoid that.
*/
struct
less_functor
{
bool
operator
()(
const
::
rtl
::
OUString
&
x
,
const
::
rtl
::
OUString
&
y
)
const
{
return
0
!=
(
x
<
y
);
}
};
#endif
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
xmloff/inc/xmloff/txtimp.hxx
Dosyayı görüntüle @
a8e35884
...
@@ -39,9 +39,6 @@
...
@@ -39,9 +39,6 @@
#include <boost/shared_ptr.hpp>
#include <boost/shared_ptr.hpp>
#include <xmloff/xmltkmap.hxx>
#include <xmloff/xmltkmap.hxx>
// xmloff/functional.hxx is obsolete and should be replaced by its comphelper
// counterpart
#include <comphelper/stl_types.hxx>
#include <comphelper/stl_types.hxx>
#include <xmloff/uniref.hxx>
#include <xmloff/uniref.hxx>
...
...
xmloff/source/transform/MetaTContext.hxx
Dosyayı görüntüle @
a8e35884
...
@@ -30,15 +30,14 @@
...
@@ -30,15 +30,14 @@
#define _XMLOFF_METATCONTEXT_HXX
#define _XMLOFF_METATCONTEXT_HXX
#include <rtl/ref.hxx>
#include <rtl/ref.hxx>
#include "xmloff/functional.hxx"
#include <comphelper/stl_types.hxx>
#include <map>
#include <map>
#include "FlatTContext.hxx"
#include "FlatTContext.hxx"
typedef
::
std
::
multimap
<
::
rtl
::
OUString
,
typedef
::
std
::
multimap
<
::
rtl
::
OUString
,
::
rtl
::
Reference
<
XMLPersTextContentTContext
>
,
::
rtl
::
Reference
<
XMLPersTextContentTContext
>
,
less_functor
>
XMLMetaContexts_Impl
;
::
comphelper
::
UStringLess
>
XMLMetaContexts_Impl
;
class
XMLMetaTransformerContext
:
public
XMLTransformerContext
class
XMLMetaTransformerContext
:
public
XMLTransformerContext
...
...
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