mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 21:21:33 +00:00
End of line fix for gcc 3.x, other misc fixes for 3x
svn path=/trunk/; revision=3539
This commit is contained in:
parent
2e1536cfa6
commit
5902c7241e
12 changed files with 13 additions and 12 deletions
|
@ -82,4 +82,4 @@ public:
|
|||
static int StripBuffer(char* pszBuffer, char* pszBufferEnd, int width);
|
||||
};
|
||||
|
||||
#endif
|
||||
#endif
|
||||
|
|
|
@ -94,4 +94,4 @@ private:
|
|||
|
||||
};
|
||||
|
||||
#endif // __KEYTRANS_H
|
||||
#endif // __KEYTRANS_H
|
||||
|
|
|
@ -129,7 +129,7 @@ public:
|
|||
_Destroy(begin(), end());
|
||||
_Last = _First;
|
||||
#else
|
||||
destroy(begin( ), end( ));
|
||||
// destroy(begin( ), end( ));
|
||||
#ifdef __CYGWIN__
|
||||
_M_finish = _M_start;
|
||||
#endif
|
||||
|
@ -168,4 +168,4 @@ public:
|
|||
|
||||
};
|
||||
|
||||
#endif
|
||||
#endif
|
||||
|
|
|
@ -217,4 +217,4 @@ void TCharmap::modmap(char pos, char mapchar, char c) {
|
|||
for(int j = 0; j < 256; j++) map[mapchar][pos] = j;
|
||||
}
|
||||
map[mapchar][pos] = c;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -30,6 +30,7 @@
|
|||
/////////////////////////////////////////////////////////
|
||||
|
||||
#include "tkeydef.h"
|
||||
#include <string.h>
|
||||
|
||||
// This class did not properly release memory before, and a buffer overrun
|
||||
// was apparent in operator=(char*). Fixed. (Paul Brannan Feb. 4, 1999)
|
||||
|
|
|
@ -68,4 +68,4 @@ public:
|
|||
|
||||
};
|
||||
|
||||
#endif
|
||||
#endif
|
||||
|
|
|
@ -36,4 +36,4 @@ struct KeyMap {
|
|||
~KeyMap();
|
||||
};
|
||||
|
||||
#endif
|
||||
#endif
|
||||
|
|
|
@ -102,4 +102,4 @@ private:
|
|||
|
||||
};
|
||||
|
||||
#endif
|
||||
#endif
|
||||
|
|
|
@ -26,4 +26,4 @@ public:
|
|||
~TMouse();
|
||||
};
|
||||
|
||||
#endif
|
||||
#endif
|
||||
|
|
|
@ -17,4 +17,4 @@ public:
|
|||
void Paste();
|
||||
};
|
||||
|
||||
#endif
|
||||
#endif
|
||||
|
|
|
@ -208,4 +208,4 @@ private:
|
|||
|
||||
extern TConfig ini;
|
||||
|
||||
#endif
|
||||
#endif
|
||||
|
|
|
@ -23,4 +23,4 @@ public:
|
|||
~TScroller();
|
||||
};
|
||||
|
||||
#endif
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue