]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/file.h
removing old files
[wxWidgets.git] / interface / file.h
index a2a28297efb2ffd8931c756397eac84d64eb5157..cb74e2dfa8f8fa72f0d70bc7f8a97f2f8273eddf 100644 (file)
@@ -147,7 +147,7 @@ public:
     /**
         Associates the file with the given file descriptor, which has already been
         opened.
-        
+
         @param filename
             The filename.
         @param mode
@@ -165,7 +165,7 @@ public:
 
     /**
         Destructor will close the file.
-        @b NB: it is not virtual so you should not use wxFile polymorphically.
+        @note it is not virtual so you should not use wxFile polymorphically.
     */
     ~wxFile();
 
@@ -254,7 +254,7 @@ public:
 
     /**
         Opens the file, returning @true if successful.
-        
+
         @param filename
             The filename.
         @param mode
@@ -275,13 +275,13 @@ public:
 
     /**
         Seeks to the specified position.
-        
+
         @param ofs
             Offset to seek to.
         @param mode
             One of wxFromStart, wxFromEnd, wxFromCurrent.
-        
-        @returns The actual offset position achieved, or wxInvalidOffset on
+
+        @return The actual offset position achieved, or wxInvalidOffset on
                  failure.
     */
     wxFileOffset Seek(wxFileOffset ofs,
@@ -291,11 +291,11 @@ public:
         Moves the file pointer to the specified number of bytes relative to the end of
         the file. For example, @c SeekEnd(-5) would position the pointer 5
         bytes before the end.
-        
+
         @param ofs
             Number of bytes before the end of the file.
-        
-        @returns The actual offset position achieved, or wxInvalidOffset on
+
+        @return The actual offset position achieved, or wxInvalidOffset on
                  failure.
     */
     wxFileOffset SeekEnd(wxFileOffset ofs = 0);