Normalize whitespace.

Remove trailing whitespace and make sure each file ends with a newline.
This commit is contained in:
Markus F.X.J. Oberhumer 2017-07-06 22:30:52 +02:00
parent 30452faab9
commit 51f487c5be
4 changed files with 5 additions and 5 deletions

2
.gitignore vendored
View File

@ -3,4 +3,4 @@
nimcache
*.nimproject*
*.exe
*.qmlc
*.qmlc

View File

@ -1 +1 @@
--path:"../../src"
--path:"../../src"

View File

@ -1 +1 @@
--path:"../../src"
--path:"../../src"

View File

@ -51,7 +51,7 @@ proc child*(self: QModelIndex, row: cint, column: cint): QModelIndex =
proc sibling*(self: QModelIndex, row: cint, column: cint): QModelIndex =
## Return the sibling index associated to the given row and column
newQModelIndex(dos_qmodelindex_sibling(self.vptr, row, column), Ownership.Take)
proc internalPointer(self: QModelIndex): pointer =
proc internalPointer(self: QModelIndex): pointer =
## Return the internal pointer
dos_qmodelindex_internalPointer(self.vptr)