src/os2.cpp
branchcpp_gui
changeset 6308 646711c5feaa
parent 6303 84c215fc8eb8
--- a/src/os2.cpp	Sun Apr 15 17:04:44 2007 +0000
+++ b/src/os2.cpp	Sat Apr 21 08:23:57 2007 +0000
@@ -169,7 +169,7 @@
  * Insert a chunk of text from the clipboard onto the textbuffer. Get TEXT clipboard
  * and append this up to the maximum length (either absolute or screenlength). If maxlength
  * is zero, we don't care about the screenlength but only about the physical length of the string
- * @param tb @Textbuf type to be changed
+ * @param tb Textbuf type to be changed
  * @return Return true on successfull change of Textbuf, or false otherwise
  */
 bool InsertTextBufferClipboard(Textbuf *tb)
@@ -222,7 +222,7 @@
 void CSleep(int milliseconds)
 {
 #ifndef __INNOTEK_LIBC__
- 	delay(milliseconds);
+	delay(milliseconds);
 #else
 	usleep(milliseconds * 1000);
 #endif