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
63d94a6c
Kaydet (Commit)
63d94a6c
authored
Agu 16, 2016
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix check for aMinusSign in chart2/inc/SpecialUnicodes.hxx
Change-Id: I15e344874d90cc38acb219e7c07579d68af89043
üst
aff3d8db
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
3 deletions
+6
-3
stringstatic.cxx
compilerplugins/clang/stringstatic.cxx
+6
-3
No files found.
compilerplugins/clang/stringstatic.cxx
Dosyayı görüntüle @
63d94a6c
...
...
@@ -47,9 +47,6 @@ void StringStatic::run()
// has a mix of literals and and refs to external OUStrings
if
(
fn
==
SRCDIR
"/ucb/source/ucp/webdav-neon/ContentProperties.cxx"
)
return
;
// we could use OUStringLiteral1 here, but we'd need to update OUStringLiteral1 to allow BMP chars first
if
(
fn
==
SRCDIR
"/include/chart2/SpecialUnicodes.hxx"
)
return
;
TraverseDecl
(
compiler
.
getASTContext
().
getTranslationUnitDecl
());
...
...
@@ -69,6 +66,12 @@ bool StringStatic::VisitVarDecl(VarDecl const* varDecl)
if
(
ignoreLocation
(
varDecl
))
{
return
true
;
}
// We could use OUStringLiteral1 here, but we'd need to update OUStringLiteral1 to allow BMP chars first:
if
(
compiler
.
getSourceManager
().
getFilename
(
varDecl
->
getLocation
())
==
SRCDIR
"/chart2/inc/SpecialUnicodes.hxx"
)
{
return
true
;
}
QualType
qt
=
varDecl
->
getType
();
if
(
!
varDecl
->
hasGlobalStorage
()
...
...
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