Code

finally getting closer to processing axes and contexts correctly
[inkscape.git] / src / streams-handles.cpp
index 0990d05897dd09acb1cb8e3678fd8451efb4dd79..9c6e861f80aeca9dd8fde44ee184461762430177 100644 (file)
@@ -29,7 +29,7 @@ int FileHandle::open(URI const& uri, char const* mode)
 }
 
 FILE *FileHandle::sys_open(URI const& uri, char const* mode)
-{    
+{
     gchar *filename = uri.toNativeFilename();
 
     if ((fp = std::fopen(filename, mode)) == 0) {
@@ -83,8 +83,8 @@ int FileHandle::sys_write (void const *buf, int buflen) throw(WriteException)
        error("fwrite");
        throw WriteException();
     }
-    
-    return nbytes;    
+
+    return nbytes;
 }
 
 int FileHandle::seek(long offset, int whence)