Sanitizing source files in Housekeeper-Nightly
git-svn-id: http://skia.googlecode.com/svn/trunk@9478 2bbb7eff-a529-9590-31e7-b0007b416f81
diff --git a/include/core/SkDocument.h b/include/core/SkDocument.h
index 5ca0a5c..b1c1fcf 100644
--- a/include/core/SkDocument.h
+++ b/include/core/SkDocument.h
@@ -88,7 +88,7 @@
private:
SkWStream* fStream;
void (*fDoneProc)(SkWStream*);
- State fState;
+ State fState;
};
#endif
diff --git a/src/doc/SkDocument.cpp b/src/doc/SkDocument.cpp
index 4298b3f..b051300 100644
--- a/src/doc/SkDocument.cpp
+++ b/src/doc/SkDocument.cpp
@@ -80,4 +80,3 @@
}
}
}
-
diff --git a/src/doc/SkDocument_PDF.cpp b/src/doc/SkDocument_PDF.cpp
index 3d9c463..27cf2e8 100644
--- a/src/doc/SkDocument_PDF.cpp
+++ b/src/doc/SkDocument_PDF.cpp
@@ -17,7 +17,7 @@
fCanvas = NULL;
fDevice = NULL;
}
-
+
virtual ~SkDocument_PDF() {
// subclasses must call close() in their destructors
this->close();
@@ -89,4 +89,3 @@
}
return SkNEW_ARGS(SkDocument_PDF, (stream, delete_wstream));
}
-
diff --git a/src/utils/SkLua.cpp b/src/utils/SkLua.cpp
index e56e585..d1f2633 100644
--- a/src/utils/SkLua.cpp
+++ b/src/utils/SkLua.cpp
@@ -618,7 +618,7 @@
static int lsk_newTypeface(lua_State* L) {
const char* name = NULL;
int style = SkTypeface::kNormal;
-
+
int count = lua_gettop(L);
if (count > 0 && lua_isstring(L, 1)) {
name = lua_tolstring(L, 1, NULL);
diff --git a/tools/skhello.cpp b/tools/skhello.cpp
index 036b08a..bd31742 100644
--- a/tools/skhello.cpp
+++ b/tools/skhello.cpp
@@ -35,7 +35,7 @@
};
SkAutoTUnref<SkSurface> surface(SkSurface::NewRaster(info));
doDraw(surface->getCanvas(), paint, text);
-
+
SkAutoTUnref<SkImage> image(surface->newImageSnapshot());
SkAutoDataUnref data(image->encode());
if (NULL == data.get()) {
@@ -92,7 +92,7 @@
{ do_surface, ".png" },
{ do_document, ".pdf" },
};
-
+
for (size_t i = 0; i < SK_ARRAY_COUNT(gRec); ++i) {
SkString file;
file.printf("%s%s", path.c_str(), gRec[i].fSuffix);