diff options
| author | Dana Jansens <danakj@orodu.net> | 2002-07-03 06:34:25 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2002-07-03 06:34:25 +0000 |
| commit | 08d793bb796f608774d6fdefd1950df54477e2c6 (patch) | |
| tree | d897fc026fce4b47243f30141da0bbe4081e53a4 /src/Util.hh | |
| parent | 9aaf4f8de762a540780aaef54d15802762dc4130 (diff) | |
add BFont class, with Xft support
Diffstat (limited to 'src/Util.hh')
| -rw-r--r-- | src/Util.hh | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/src/Util.hh b/src/Util.hh index 2a40308d..a0acd4cd 100644 --- a/src/Util.hh +++ b/src/Util.hh @@ -101,11 +101,9 @@ struct PointerAssassin { std::string itostring(unsigned long i); std::string itostring(long i); -inline std::string itostring(unsigned int i) { - return itostring((unsigned long) i); -} -inline std::string itostring(int i) { - return itostring((long) i); -} - +inline std::string itostring(unsigned int i) + { return itostring((unsigned long) i); } +inline std::string itostring(int i) + { return itostring((long) i); } + #endif |
