]> Dogcows Code - chaz/openbox/blobdiff - otk/util.cc
support net_wm_strut's! nothing to do with them yet however
[chaz/openbox] / otk / util.cc
index 91d6f13a5471f98b69c71744216a03f3c638c571..ebca51d51ef0f6fe38c4a4ee4fcbebdaa4c3fe62 100644 (file)
@@ -101,14 +101,12 @@ string itostring(long i) {
   return tmp;
 }
 
-}
-
-#ifndef   HAVE_BASENAME
 string basename (const string& path) {
   string::size_type slash = path.rfind('/');
   if (slash == string::npos)
     return path;
   return path.substr(slash+1);
 }
-#endif // HAVE_BASENAME
+
+}
 
This page took 0.021869 seconds and 4 git commands to generate.