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
2d7ff9c2
Kaydet (Commit)
2d7ff9c2
authored
Nis 27, 2015
tarafından
Tomaž Vajngerl
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
change Paint input parameter to ref
Change-Id: I4bf97d46736ce8186c3699c9a861e44103ab0d4b
üst
56e2f3e3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
window.hxx
include/vcl/window.hxx
+2
-2
window.cxx
vcl/source/window/window.cxx
+1
-1
No files found.
include/vcl/window.hxx
Dosyayı görüntüle @
2d7ff9c2
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
y
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
...
...
@@ -702,7 +702,7 @@ public:
virtual
void
KeyInput
(
const
KeyEvent
&
rKEvt
);
virtual
void
KeyUp
(
const
KeyEvent
&
rKEvt
);
virtual
void
PrePaint
();
virtual
void
Paint
(
vcl
::
RenderContext
*
p
RenderContext
,
const
Rectangle
&
rRect
);
virtual
void
Paint
(
vcl
::
RenderContext
&
r
RenderContext
,
const
Rectangle
&
rRect
);
virtual
void
Paint
(
const
Rectangle
&
rRect
);
virtual
void
Erase
()
SAL_OVERRIDE
;
virtual
void
Erase
(
const
Rectangle
&
rRect
)
SAL_OVERRIDE
{
::
OutputDevice
::
Erase
(
rRect
);
}
...
...
vcl/source/window/window.cxx
Dosyayı görüntüle @
2d7ff9c2
...
...
@@ -3927,7 +3927,7 @@ Any Window::GetSystemDataAny() const
return
aRet
;
}
void
Window
::
Paint
(
vcl
::
RenderContext
*
/*p
RenderContext*/
,
const
Rectangle
&
rRect
)
void
Window
::
Paint
(
vcl
::
RenderContext
&
/*r
RenderContext*/
,
const
Rectangle
&
rRect
)
{
Paint
(
rRect
);
}
...
...
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