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
ab71569a
Kaydet (Commit)
ab71569a
authored
Mar 12, 2019
tarafından
Tomaž Vajngerl
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
fix build failures because of diff against master
Change-Id: Iefe4683f456750b53c96e1634d7930f4b042e573
üst
fe4da4c2
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
9 additions
and
2 deletions
+9
-2
lru_map.hxx
include/o3tl/lru_map.hxx
+6
-0
svdata.hxx
vcl/inc/svdata.hxx
+1
-0
FileDefinitionWidgetDraw.cxx
vcl/source/gdi/FileDefinitionWidgetDraw.cxx
+1
-1
WidgetDefinition.cxx
vcl/source/gdi/WidgetDefinition.cxx
+1
-1
No files found.
include/o3tl/lru_map.hxx
Dosyayı görüntüle @
ab71569a
...
...
@@ -132,6 +132,12 @@ public:
{
return
mLruList
.
size
();
}
void
clear
()
{
mLruMap
.
clear
();
mLruList
.
clear
();
}
};
}
...
...
vcl/inc/svdata.hxx
Dosyayı görüntüle @
ab71569a
...
...
@@ -41,6 +41,7 @@
#include "ControlCacheKey.hxx"
#include "schedulerimpl.hxx"
#include <basegfx/DrawCommands.hxx>
#include <o3tl/lru_map.hxx>
struct
ImplPostEventData
;
struct
ImplTimerData
;
...
...
vcl/source/gdi/FileDefinitionWidgetDraw.cxx
Dosyayı görüntüle @
ab71569a
...
...
@@ -211,7 +211,7 @@ void drawFromDrawCommands(gfx::DrawRoot const& rDrawRoot, SalGraphics& rGraphics
{
for
(
size_t
i
=
0
;
i
<
rPolygon
.
count
();
++
i
)
{
auto
&
rPoint
=
rPolygon
.
getB2DPoint
(
i
);
auto
const
&
rPoint
=
rPolygon
.
getB2DPoint
(
i
);
double
x
=
rPoint
.
getX
();
double
y
=
rPoint
.
getY
();
...
...
vcl/source/gdi/WidgetDefinition.cxx
Dosyayı görüntüle @
ab71569a
...
...
@@ -184,7 +184,7 @@ void WidgetDefinitionState::addDrawImage(OUString const& sSource)
void
WidgetDefinitionState
::
addDrawExternal
(
OUString
const
&
sSource
)
{
auto
pCommand
(
std
::
make_
unique
<
ExternalSourceDrawCommand
>
());
auto
pCommand
(
std
::
make_
shared
<
ExternalSourceDrawCommand
>
());
pCommand
->
msSource
=
sSource
;
mpDrawCommands
.
push_back
(
std
::
move
(
pCommand
));
}
...
...
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