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
55186ab6
Kaydet (Commit)
55186ab6
authored
Tem 10, 2001
tarafından
Peter Burow
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
fix: #87257# class International removed
üst
6752f889
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
31 additions
and
27 deletions
+31
-27
paperinf.cxx
svx/source/items/paperinf.cxx
+2
-16
paraitem.cxx
svx/source/items/paraitem.cxx
+15
-5
pszctrl.cxx
svx/source/stbctrls/pszctrl.cxx
+11
-3
tbcontrl.cxx
svx/source/tbxctrls/tbcontrl.cxx
+3
-3
No files found.
svx/source/items/paperinf.cxx
Dosyayı görüntüle @
55186ab6
...
@@ -2,9 +2,9 @@
...
@@ -2,9 +2,9 @@
*
*
* $RCSfile: paperinf.cxx,v $
* $RCSfile: paperinf.cxx,v $
*
*
* $Revision: 1.
1.1.1
$
* $Revision: 1.
2
$
*
*
* last change: $Author:
hr $ $Date: 2000-09-18 17:01:21
$
* last change: $Author:
pb $ $Date: 2001-07-10 11:15:54
$
*
*
* 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
...
@@ -246,21 +246,7 @@ Size SvxPaperInfo::GetPaperSize( const Printer* pPrinter )
...
@@ -246,21 +246,7 @@ Size SvxPaperInfo::GetPaperSize( const Printer* pPrinter )
const
Size
aInvalidSize
;
const
Size
aInvalidSize
;
if
(
aPaperSize
==
aInvalidSize
)
if
(
aPaperSize
==
aInvalidSize
)
{
#ifdef OS2
// Workaround fuer OS/2, da class Printer unter OS/2 Macken hat
LanguageType
eLType
=
GetpApp
()
->
GetAppInternational
().
GetLanguage
();
if
(
eLType
==
LANGUAGE_ENGLISH_US
||
eLType
==
LANGUAGE_ENGLISH_UK
)
return
GetPaperSize
(
SVX_PAPER_LETTER
);
else
return
GetPaperSize
(
SVX_PAPER_A4
);
#else
return
GetPaperSize
(
SVX_PAPER_A4
);
return
GetPaperSize
(
SVX_PAPER_A4
);
#endif
}
MapMode
aMap1
=
pPrinter
->
GetMapMode
();
MapMode
aMap1
=
pPrinter
->
GetMapMode
();
MapMode
aMap2
;
MapMode
aMap2
;
...
...
svx/source/items/paraitem.cxx
Dosyayı görüntüle @
55186ab6
...
@@ -2,9 +2,9 @@
...
@@ -2,9 +2,9 @@
*
*
* $RCSfile: paraitem.cxx,v $
* $RCSfile: paraitem.cxx,v $
*
*
* $Revision: 1.1
7
$
* $Revision: 1.1
8
$
*
*
* last change: $Author:
mib $ $Date: 2001-07-05 09:36:38
$
* last change: $Author:
pb $ $Date: 2001-07-10 11:15:54
$
*
*
* 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
...
@@ -73,6 +73,13 @@
...
@@ -73,6 +73,13 @@
#ifndef _COM_SUN_STAR_UNO_SEQUENCE_HXX_
#ifndef _COM_SUN_STAR_UNO_SEQUENCE_HXX_
#include <com/sun/star/uno/Sequence.hxx>
#include <com/sun/star/uno/Sequence.hxx>
#endif
#endif
#ifndef _UNOTOOLS_LOCALEDATAWRAPPER_HXX
#include <unotools/localedatawrapper.hxx>
#endif
#ifndef _UNOTOOLS_PROCESSFACTORY_HXX
#include <comphelper/processfactory.hxx>
#endif
#include <comphelper/types.hxx>
#include <comphelper/types.hxx>
using
namespace
::
rtl
;
using
namespace
::
rtl
;
...
@@ -874,7 +881,8 @@ SvxTabStop::SvxTabStop()
...
@@ -874,7 +881,8 @@ SvxTabStop::SvxTabStop()
{
{
nTabPos
=
0
;
nTabPos
=
0
;
eAdjustment
=
SVX_TAB_ADJUST_LEFT
;
eAdjustment
=
SVX_TAB_ADJUST_LEFT
;
cDecimal
=
GetpApp
()
->
GetAppInternational
().
GetNumDecimalSep
();
LocaleDataWrapper
aLocaleWrapper
(
::
comphelper
::
getProcessServiceFactory
(),
Application
::
GetSettings
().
GetLocale
()
);
cDecimal
=
aLocaleWrapper
.
getNumDecimalSep
().
GetChar
(
0
);
cFill
=
cDfltFillChar
;
cFill
=
cDfltFillChar
;
}
}
...
@@ -887,8 +895,10 @@ SvxTabStop::SvxTabStop( const long nPos, const SvxTabAdjust eAdjst,
...
@@ -887,8 +895,10 @@ SvxTabStop::SvxTabStop( const long nPos, const SvxTabAdjust eAdjst,
eAdjustment
=
eAdjst
;
eAdjustment
=
eAdjst
;
if
(
cDfltDecimalChar
==
cDec
)
if
(
cDfltDecimalChar
==
cDec
)
// default aus der International-Klasse besorgen
{
cDecimal
=
GetpApp
()
->
GetAppInternational
().
GetNumDecimalSep
();
LocaleDataWrapper
aLocaleWrapper
(
::
comphelper
::
getProcessServiceFactory
(),
Application
::
GetSettings
().
GetLocale
()
);
cDecimal
=
aLocaleWrapper
.
getNumDecimalSep
().
GetChar
(
0
);
}
else
else
cDecimal
=
cDec
;
cDecimal
=
cDec
;
cFill
=
cFil
;
cFill
=
cFil
;
...
...
svx/source/stbctrls/pszctrl.cxx
Dosyayı görüntüle @
55186ab6
...
@@ -2,9 +2,9 @@
...
@@ -2,9 +2,9 @@
*
*
* $RCSfile: pszctrl.cxx,v $
* $RCSfile: pszctrl.cxx,v $
*
*
* $Revision: 1.
4
$
* $Revision: 1.
5
$
*
*
* last change: $Author: pb $ $Date: 200
0-10-23 09:32:02
$
* last change: $Author: pb $ $Date: 200
1-07-10 11:22:50
$
*
*
* 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
...
@@ -112,6 +112,13 @@
...
@@ -112,6 +112,13 @@
#include "dialogs.hrc"
#include "dialogs.hrc"
#ifndef _UNOTOOLS_LOCALEDATAWRAPPER_HXX
#include <unotools/localedatawrapper.hxx>
#endif
#ifndef _UNOTOOLS_PROCESSFACTORY_HXX
#include <comphelper/processfactory.hxx>
#endif
// -----------------------------------------------------------------------
// -----------------------------------------------------------------------
/* [Beschreibung]
/* [Beschreibung]
...
@@ -136,7 +143,8 @@ String GetMetricStr_Impl( long nVal, SfxMapUnit eUnit )
...
@@ -136,7 +143,8 @@ String GetMetricStr_Impl( long nVal, SfxMapUnit eUnit )
eInUnit
=
FUNIT_100TH_MM
;
eInUnit
=
FUNIT_100TH_MM
;
String
sMetric
;
String
sMetric
;
char
cSep
=
GetpApp
()
->
GetAppInternational
().
GetNumDecimalSep
();
LocaleDataWrapper
aLocaleWrapper
(
::
comphelper
::
getProcessServiceFactory
(),
Application
::
GetSettings
().
GetLocale
()
);
const
sal_Unicode
cSep
=
aLocaleWrapper
.
getNumDecimalSep
().
GetChar
(
0
);
long
nConvVal
=
MetricField
::
ConvertValue
(
nVal
*
100
,
0L
,
0
,
long
nConvVal
=
MetricField
::
ConvertValue
(
nVal
*
100
,
0L
,
0
,
eInUnit
,
eOutUnit
);
eInUnit
,
eOutUnit
);
...
...
svx/source/tbxctrls/tbcontrl.cxx
Dosyayı görüntüle @
55186ab6
...
@@ -2,9 +2,9 @@
...
@@ -2,9 +2,9 @@
*
*
* $RCSfile: tbcontrl.cxx,v $
* $RCSfile: tbcontrl.cxx,v $
*
*
* $Revision: 1.1
2
$
* $Revision: 1.1
3
$
*
*
* last change: $Author:
sj $ $Date: 2001-05-22 10:41:32
$
* last change: $Author:
pb $ $Date: 2001-07-10 11:20:47
$
*
*
* 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
...
@@ -1693,7 +1693,7 @@ void SvxTbxButtonColorUpdater::Update( const Color& rColor )
...
@@ -1693,7 +1693,7 @@ void SvxTbxButtonColorUpdater::Update( const Color& rColor )
void
SvxTbxButtonColorUpdater
::
DrawChar
(
VirtualDevice
&
rVirDev
,
const
Color
&
rCol
)
void
SvxTbxButtonColorUpdater
::
DrawChar
(
VirtualDevice
&
rVirDev
,
const
Color
&
rCol
)
{
{
Font
aOldFont
=
rVirDev
.
GetFont
();
Font
aOldFont
=
rVirDev
.
GetFont
();
Font
aFont
(
System
::
GetStandardFont
(
STDFONT_ROMAN
)
)
;
Font
aFont
=
aOldFont
;
Size
aSz
=
aFont
.
GetSize
();
Size
aSz
=
aFont
.
GetSize
();
aSz
.
Height
()
=
theBmpSize
.
Height
();
aSz
.
Height
()
=
theBmpSize
.
Height
();
aFont
.
SetSize
(
aSz
);
aFont
.
SetSize
(
aSz
);
...
...
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