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
a402fd0d
Kaydet (Commit)
a402fd0d
authored
Tem 01, 2014
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
loplugin:stringconcat
Change-Id: Ibf410eb1b8be81505b8e778aadf916a26ba39468
üst
6a20b627
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
9 deletions
+9
-9
CFStringUtilities.hxx
fpicker/source/aqua/CFStringUtilities.hxx
+7
-7
salgdi.cxx
vcl/quartz/salgdi.cxx
+1
-1
salvd.cxx
vcl/quartz/salvd.cxx
+1
-1
No files found.
fpicker/source/aqua/CFStringUtilities.hxx
Dosyayı görüntüle @
a402fd0d
...
...
@@ -141,41 +141,41 @@ inline void DBG_PRINT_EXIT(const char * classname, const char * methodname) {
}
inline
void
DBG_PRINT_EXIT
(
const
char
*
classname
,
const
char
*
methodname
,
const
char
*
retVal
)
{
SAL_INFO
(
"fpicker.aqua"
,
"<<< "
<<
classname
<<
"::"
<<
methodname
<<
PARAMFILLER
<<
"returnValue = "
<<
retVal
);
SAL_INFO
(
"fpicker.aqua"
,
"<<< "
<<
classname
<<
"::"
<<
methodname
<<
PARAMFILLER
"returnValue = "
<<
retVal
);
}
inline
void
DBG_PRINT_EXIT
(
const
char
*
classname
,
const
char
*
methodname
,
int
retVal
)
{
SAL_INFO
(
"fpicker.aqua"
,
"<<< "
<<
classname
<<
"::"
<<
methodname
<<
PARAMFILLER
<<
"returnValue = "
<<
retVal
);
SAL_INFO
(
"fpicker.aqua"
,
"<<< "
<<
classname
<<
"::"
<<
methodname
<<
PARAMFILLER
"returnValue = "
<<
retVal
);
}
#if OSL_DEBUG_LEVEL > 1
inline
void
DBG_PRINT_EXIT
(
const
char
*
classname
,
const
char
*
methodname
,
const
CFStringRef
retVal
)
{
SAL_INFO
(
"fpicker.aqua"
,
"<<< "
<<
classname
<<
"::"
<<
methodname
<<
PARAMFILLER
<<
"returnValue = "
);
SAL_INFO
(
"fpicker.aqua"
,
"<<< "
<<
classname
<<
"::"
<<
methodname
<<
PARAMFILLER
"returnValue = "
);
CFShow
(
retVal
);
}
#else
inline
void
DBG_PRINT_EXIT
(
const
char
*
classname
,
const
char
*
methodname
,
const
CFStringRef
/* retVal */
)
{
SAL_INFO
(
"fpicker.aqua"
,
"<<< "
<<
classname
<<
"::"
<<
methodname
<<
PARAMFILLER
<<
"returnValue = "
);
SAL_INFO
(
"fpicker.aqua"
,
"<<< "
<<
classname
<<
"::"
<<
methodname
<<
PARAMFILLER
"returnValue = "
);
}
#endif
#if OSL_DEBUG_LEVEL > 1
inline
void
DBG_PRINT_EXIT
(
const
char
*
classname
,
const
char
*
methodname
,
const
NSString
*
retVal
)
{
SAL_INFO
(
"fpicker.aqua"
,
"<<< "
<<
classname
<<
"::"
<<
methodname
<<
PARAMFILLER
<<
"returnValue = "
);
SAL_INFO
(
"fpicker.aqua"
,
"<<< "
<<
classname
<<
"::"
<<
methodname
<<
PARAMFILLER
"returnValue = "
);
NSLog
(
const_cast
<
NSString
*>
(
retVal
));
}
#else
inline
void
DBG_PRINT_EXIT
(
const
char
*
classname
,
const
char
*
methodname
,
const
NSString
*
/* retVal */
)
{
SAL_INFO
(
"fpicker.aqua"
,
"<<< "
<<
classname
<<
"::"
<<
methodname
<<
PARAMFILLER
<<
"returnValue = "
);
SAL_INFO
(
"fpicker.aqua"
,
"<<< "
<<
classname
<<
"::"
<<
methodname
<<
PARAMFILLER
"returnValue = "
);
}
#endif
inline
void
DBG_PRINT_EXIT
(
const
char
*
classname
,
const
char
*
methodname
,
const
OUString
&
retVal
)
{
SAL_INFO
(
"fpicker.aqua"
,
"<<< "
<<
classname
<<
"::"
<<
methodname
<<
PARAMFILLER
<<
"returnValue = "
<<
OUStringToOString
(
retVal
,
RTL_TEXTENCODING_UTF8
).
getStr
());
SAL_INFO
(
"fpicker.aqua"
,
"<<< "
<<
classname
<<
"::"
<<
methodname
<<
PARAMFILLER
"returnValue = "
<<
OUStringToOString
(
retVal
,
RTL_TEXTENCODING_UTF8
).
getStr
());
}
#endif // INCLUDED_FPICKER_SOURCE_AQUA_CFSTRINGUTILITIES_HXX
...
...
vcl/quartz/salgdi.cxx
Dosyayı görüntüle @
a402fd0d
...
...
@@ -469,7 +469,7 @@ sal_uInt16 AquaSalGraphics::SetFont( FontSelectPattern* pReqFont, int /*nFallbac
SAL_INFO
(
"vcl.ct"
,
"SetFont"
<<
" to "
<<
mpFontData
->
GetFamilyName
()
" to "
<<
mpFontData
->
GetFamilyName
()
<<
", "
<<
mpFontData
->
GetStyleName
()
<<
" fontid="
<<
mpFontData
->
GetFontId
()
<<
" for "
<<
pReqFont
->
GetFamilyName
()
...
...
vcl/quartz/salvd.cxx
Dosyayı görüntüle @
a402fd0d
...
...
@@ -158,7 +158,7 @@ void AquaSalVirtualDevice::ReleaseGraphics( SalGraphics* )
bool
AquaSalVirtualDevice
::
SetSize
(
long
nDX
,
long
nDY
)
{
SAL_INFO
(
"vcl.virdev"
,
"AquaSalVirtualDevice::SetSize() this="
<<
this
<<
" ("
<<
nDX
<<
"x"
<<
nDY
<<
")
"
<<
"
mbForeignContext="
<<
mbForeignContext
);
SAL_INFO
(
"vcl.virdev"
,
"AquaSalVirtualDevice::SetSize() this="
<<
this
<<
" ("
<<
nDX
<<
"x"
<<
nDY
<<
") mbForeignContext="
<<
mbForeignContext
);
if
(
mbForeignContext
)
{
...
...
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