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
e642609a
Kaydet (Commit)
e642609a
authored
Kas 12, 2013
tarafından
Norbert Thiebaud
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
basebmp: include <> for external includes
Change-Id: I6f1f573662d5e759694c401598408df9fbb20be8
üst
cde4fdb2
Show whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
50 additions
and
50 deletions
+50
-50
bitmapdevice.cxx
basebmp/source/bitmapdevice.cxx
+22
-22
polypolygonrenderer.cxx
basebmp/source/polypolygonrenderer.cxx
+1
-1
basictest.cxx
basebmp/test/basictest.cxx
+4
-4
bmpdemo.cxx
basebmp/test/bmpdemo.cxx
+1
-1
bmpmasktest.cxx
basebmp/test/bmpmasktest.cxx
+3
-3
bmptest.cxx
basebmp/test/bmptest.cxx
+3
-3
cliptest.cxx
basebmp/test/cliptest.cxx
+3
-3
filltest.cxx
basebmp/test/filltest.cxx
+3
-3
linetest.cxx
basebmp/test/linetest.cxx
+3
-3
masktest.cxx
basebmp/test/masktest.cxx
+3
-3
polytest.cxx
basebmp/test/polytest.cxx
+3
-3
tools.hxx
basebmp/test/tools.hxx
+1
-1
No files found.
basebmp/source/bitmapdevice.cxx
Dosyayı görüntüle @
e642609a
...
@@ -17,38 +17,38 @@
...
@@ -17,38 +17,38 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
*/
#include
"sal/config.h"
#include
<sal/config.h>
#include <cassert>
#include <cassert>
#include <string.h>
#include <string.h>
#include
"basebmp/bitmapdevice.hxx"
#include
<basebmp/bitmapdevice.hxx>
#include
"basebmp/compositeiterator.hxx"
#include
<basebmp/compositeiterator.hxx>
#include
"basebmp/iteratortraits.hxx"
#include
<basebmp/iteratortraits.hxx>
#include
"basebmp/accessor.hxx"
#include
<basebmp/accessor.hxx>
#include
"basebmp/accessortraits.hxx"
#include
<basebmp/accessortraits.hxx>
#include
"basebmp/accessoradapters.hxx"
#include
<basebmp/accessoradapters.hxx>
#include
"basebmp/colorblendaccessoradapter.hxx"
#include
<basebmp/colorblendaccessoradapter.hxx>
#include
"basebmp/color.hxx"
#include
<basebmp/color.hxx>
#include
"basebmp/colormisc.hxx"
#include
<basebmp/colormisc.hxx>
#include
"basebmp/colortraits.hxx"
#include
<basebmp/colortraits.hxx>
#include
"basebmp/greylevelformats.hxx"
#include
<basebmp/greylevelformats.hxx>
#include
"basebmp/paletteformats.hxx"
#include
<basebmp/paletteformats.hxx>
#include
"basebmp/rgbmaskpixelformats.hxx"
#include
<basebmp/rgbmaskpixelformats.hxx>
#include
"basebmp/rgb24pixelformats.hxx"
#include
<basebmp/rgb24pixelformats.hxx>
#include
"basebmp/scanlineformats.hxx"
#include
<basebmp/scanlineformats.hxx>
#include
"basebmp/fillimage.hxx"
#include
<basebmp/fillimage.hxx>
#include
"basebmp/scaleimage.hxx"
#include
<basebmp/scaleimage.hxx>
#include
"basebmp/clippedlinerenderer.hxx"
#include
<basebmp/clippedlinerenderer.hxx>
#include
"basebmp/polypolygonrenderer.hxx"
#include
<basebmp/polypolygonrenderer.hxx>
#include
"basebmp/genericcolorimageaccessor.hxx"
#include
<basebmp/genericcolorimageaccessor.hxx>
#include
"basebmp/tools.hxx"
#include
<basebmp/tools.hxx>
#include "intconversion.hxx"
#include "intconversion.hxx"
#include <rtl/alloc.h>
#include <rtl/alloc.h>
...
...
basebmp/source/polypolygonrenderer.cxx
Dosyayı görüntüle @
e642609a
...
@@ -17,7 +17,7 @@
...
@@ -17,7 +17,7 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
*/
#include
"basebmp/polypolygonrenderer.hxx"
#include
<basebmp/polypolygonrenderer.hxx>
#include <algorithm>
#include <algorithm>
...
...
basebmp/test/basictest.cxx
Dosyayı görüntüle @
e642609a
...
@@ -19,10 +19,10 @@
...
@@ -19,10 +19,10 @@
// autogenerated file with codegen.pl
// autogenerated file with codegen.pl
#include
"cppunit/TestAssert.h"
#include
<cppunit/TestAssert.h>
#include
"cppunit/TestFixture.h"
#include
<cppunit/TestFixture.h>
#include
"cppunit/extensions/HelperMacros.h"
#include
<cppunit/extensions/HelperMacros.h>
#include
"cppunit/plugin/TestPlugIn.h"
#include
<cppunit/plugin/TestPlugIn.h>
#include <basegfx/vector/b2isize.hxx>
#include <basegfx/vector/b2isize.hxx>
#include <basegfx/point/b2ipoint.hxx>
#include <basegfx/point/b2ipoint.hxx>
...
...
basebmp/test/bmpdemo.cxx
Dosyayı görüntüle @
e642609a
...
@@ -17,7 +17,7 @@
...
@@ -17,7 +17,7 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
*/
#include
"sal/config.h"
#include
<sal/config.h>
#include <math.h>
#include <math.h>
...
...
basebmp/test/bmpmasktest.cxx
Dosyayı görüntüle @
e642609a
...
@@ -19,9 +19,9 @@
...
@@ -19,9 +19,9 @@
// autogenerated file with codegen.pl
// autogenerated file with codegen.pl
#include
"cppunit/TestAssert.h"
#include
<cppunit/TestAssert.h>
#include
"cppunit/TestFixture.h"
#include
<cppunit/TestFixture.h>
#include
"cppunit/extensions/HelperMacros.h"
#include
<cppunit/extensions/HelperMacros.h>
#include <basegfx/vector/b2isize.hxx>
#include <basegfx/vector/b2isize.hxx>
#include <basegfx/range/b2ibox.hxx>
#include <basegfx/range/b2ibox.hxx>
...
...
basebmp/test/bmptest.cxx
Dosyayı görüntüle @
e642609a
...
@@ -17,9 +17,9 @@
...
@@ -17,9 +17,9 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
*/
#include
"cppunit/TestAssert.h"
#include
<cppunit/TestAssert.h>
#include
"cppunit/TestFixture.h"
#include
<cppunit/TestFixture.h>
#include
"cppunit/extensions/HelperMacros.h"
#include
<cppunit/extensions/HelperMacros.h>
#include <basegfx/vector/b2isize.hxx>
#include <basegfx/vector/b2isize.hxx>
#include <basegfx/range/b2ibox.hxx>
#include <basegfx/range/b2ibox.hxx>
...
...
basebmp/test/cliptest.cxx
Dosyayı görüntüle @
e642609a
...
@@ -17,9 +17,9 @@
...
@@ -17,9 +17,9 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
*/
#include
"cppunit/TestAssert.h"
#include
<cppunit/TestAssert.h>
#include
"cppunit/TestFixture.h"
#include
<cppunit/TestFixture.h>
#include
"cppunit/extensions/HelperMacros.h"
#include
<cppunit/extensions/HelperMacros.h>
#include <basegfx/vector/b2isize.hxx>
#include <basegfx/vector/b2isize.hxx>
#include <basegfx/point/b2ipoint.hxx>
#include <basegfx/point/b2ipoint.hxx>
...
...
basebmp/test/filltest.cxx
Dosyayı görüntüle @
e642609a
...
@@ -17,9 +17,9 @@
...
@@ -17,9 +17,9 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
*/
#include
"cppunit/TestAssert.h"
#include
<cppunit/TestAssert.h>
#include
"cppunit/TestFixture.h"
#include
<cppunit/TestFixture.h>
#include
"cppunit/extensions/HelperMacros.h"
#include
<cppunit/extensions/HelperMacros.h>
#include <basegfx/vector/b2isize.hxx>
#include <basegfx/vector/b2isize.hxx>
#include <basegfx/range/b2drange.hxx>
#include <basegfx/range/b2drange.hxx>
...
...
basebmp/test/linetest.cxx
Dosyayı görüntüle @
e642609a
...
@@ -17,9 +17,9 @@
...
@@ -17,9 +17,9 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
*/
#include
"cppunit/TestAssert.h"
#include
<cppunit/TestAssert.h>
#include
"cppunit/TestFixture.h"
#include
<cppunit/TestFixture.h>
#include
"cppunit/extensions/HelperMacros.h"
#include
<cppunit/extensions/HelperMacros.h>
#include <basegfx/vector/b2isize.hxx>
#include <basegfx/vector/b2isize.hxx>
#include <basegfx/point/b2ipoint.hxx>
#include <basegfx/point/b2ipoint.hxx>
...
...
basebmp/test/masktest.cxx
Dosyayı görüntüle @
e642609a
...
@@ -17,9 +17,9 @@
...
@@ -17,9 +17,9 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
*/
#include
"cppunit/TestAssert.h"
#include
<cppunit/TestAssert.h>
#include
"cppunit/TestFixture.h"
#include
<cppunit/TestFixture.h>
#include
"cppunit/extensions/HelperMacros.h"
#include
<cppunit/extensions/HelperMacros.h>
#include <basegfx/vector/b2isize.hxx>
#include <basegfx/vector/b2isize.hxx>
#include <basegfx/range/b2ibox.hxx>
#include <basegfx/range/b2ibox.hxx>
...
...
basebmp/test/polytest.cxx
Dosyayı görüntüle @
e642609a
...
@@ -17,9 +17,9 @@
...
@@ -17,9 +17,9 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
*/
#include
"cppunit/TestAssert.h"
#include
<cppunit/TestAssert.h>
#include
"cppunit/TestFixture.h"
#include
<cppunit/TestFixture.h>
#include
"cppunit/extensions/HelperMacros.h"
#include
<cppunit/extensions/HelperMacros.h>
#include <basegfx/vector/b2isize.hxx>
#include <basegfx/vector/b2isize.hxx>
#include <basegfx/range/b2ibox.hxx>
#include <basegfx/range/b2ibox.hxx>
...
...
basebmp/test/tools.hxx
Dosyayı görüntüle @
e642609a
...
@@ -17,7 +17,7 @@
...
@@ -17,7 +17,7 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
*/
#include
"basebmp/bitmapdevice.hxx"
#include
<basebmp/bitmapdevice.hxx>
int
countPixel
(
const
basebmp
::
BitmapDeviceSharedPtr
&
rDevice
,
int
countPixel
(
const
basebmp
::
BitmapDeviceSharedPtr
&
rDevice
,
basebmp
::
Color
checkColor
);
basebmp
::
Color
checkColor
);
...
...
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