diff options
Diffstat (limited to 'konq-plugins/fsview/fsview.cpp')
-rw-r--r-- | konq-plugins/fsview/fsview.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/konq-plugins/fsview/fsview.cpp b/konq-plugins/fsview/fsview.cpp index 48d97f7..a22e8b2 100644 --- a/konq-plugins/fsview/fsview.cpp +++ b/konq-plugins/fsview/fsview.cpp @@ -133,7 +133,7 @@ void FSView::setPath(TQString p) if (!fi.isDir()) { _path = fi.dirPath(true); } - _pathDepth = _path.tqcontains('/'); + _pathDepth = _path.contains('/'); KURL u; u.setPath(_path); @@ -170,7 +170,7 @@ bool FSView::getDirMetric(const TQString& k, { TQMap<TQString, MetricEntry>::iterator it; - it = _dirMetric.tqfind(k); + it = _dirMetric.find(k); if (it == _dirMetric.end()) return false; s = (*it).size; |