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
09b6f440
Kaydet (Commit)
09b6f440
authored
Ara 07, 2000
tarafından
csaba
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
79541 Branding/Configuration Change
üst
5adfea63
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
3 deletions
+18
-3
outline.cxx
sw/source/ui/misc/outline.cxx
+18
-3
No files found.
sw/source/ui/misc/outline.cxx
Dosyayı görüntüle @
09b6f440
...
@@ -2,9 +2,9 @@
...
@@ -2,9 +2,9 @@
*
*
* $RCSfile: outline.cxx,v $
* $RCSfile: outline.cxx,v $
*
*
* $Revision: 1.
3
$
* $Revision: 1.
4
$
*
*
* last change: $Author:
obo $ $Date: 2000-11-09 10:10:34
$
* last change: $Author:
csaba $ $Date: 2000-12-07 18:35:30
$
*
*
* 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
...
@@ -151,6 +151,9 @@
...
@@ -151,6 +151,9 @@
#include <outline.hrc>
#include <outline.hrc>
#endif
#endif
#include <algorithm>
#include <algorithm>
#ifndef _UTL_CONFIGMGR_HXX_
#include <unotools/configmgr.hxx>
#endif
#define C2S(cChar) UniString::CreateFromAscii(cChar)
#define C2S(cChar) UniString::CreateFromAscii(cChar)
...
@@ -1185,7 +1188,16 @@ void NumberingPreview::Paint( const Rectangle& rRect )
...
@@ -1185,7 +1188,16 @@ void NumberingPreview::Paint( const Rectangle& rRect )
nPreNum
++
;
nPreNum
++
;
}
}
pVDev
->
SetFont
(
aStdFont
);
pVDev
->
SetFont
(
aStdFont
);
String
sMsg
(
C2S
(
"StarOffice"
));
// Changed as per BugID 79541 Branding/Configuration
::
utl
::
ConfigManager
*
pMgr
=
::
utl
::
ConfigManager
::
GetConfigManager
();
UNOANY
MyAny
=
pMgr
->
GetDirectConfigProperty
(
::
utl
::
ConfigManager
::
PRODUCTNAME
);
UNOOUSTRING
aProductName
;
MyAny
>>=
aProductName
;
String
sMsg
(
C2S
(
"%PRODUCTNAME"
));
sMsg
.
SearchAndReplaceAscii
(
"%PRODUCTNAME"
,
aProductName
);
if
(
pOutlineNames
)
if
(
pOutlineNames
)
sMsg
=
pOutlineNames
[
nLevel
];
sMsg
=
pOutlineNames
[
nLevel
];
pVDev
->
DrawText
(
Point
(
nXStart
+
nTextOffset
,
nYStart
),
sMsg
);
pVDev
->
DrawText
(
Point
(
nXStart
+
nTextOffset
,
nYStart
),
sMsg
);
...
@@ -1211,6 +1223,9 @@ NumberingPreview::~NumberingPreview()
...
@@ -1211,6 +1223,9 @@ NumberingPreview::~NumberingPreview()
/*------------------------------------------------------------------------
/*------------------------------------------------------------------------
$Log: not supported by cvs2svn $
$Log: not supported by cvs2svn $
Revision 1.3 2000/11/09 10:10:34 obo
Without string include
Revision 1.2 2000/11/07 12:25:18 hjs
Revision 1.2 2000/11/07 12:25:18 hjs
use min/max from stl
use min/max from stl
...
...
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