diff options
author | Darrell Anderson <humanreadable@yahoo.com> | 2012-10-21 12:54:14 -0500 |
---|---|---|
committer | Darrell Anderson <humanreadable@yahoo.com> | 2012-10-21 12:54:14 -0500 |
commit | 34a77b2f0929838d9d4b7e46b70dfd4edf4d9d35 (patch) | |
tree | 22f2262616f428a59bd5b6af05036131f8e0fb52 | |
parent | 420618e662aa38d8cd18c5f8affa07f47bb679c8 (diff) | |
download | kdirstat-34a77b2f0929838d9d4b7e46b70dfd4edf4d9d35.tar.gz kdirstat-34a77b2f0929838d9d4b7e46b70dfd4edf4d9d35.zip |
Fix inadvertent tq changes.
-rw-r--r-- | kdirstat/ktreemapview.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kdirstat/ktreemapview.cpp b/kdirstat/ktreemapview.cpp index 03e1f1d..43f07b6 100644 --- a/kdirstat/ktreemapview.cpp +++ b/kdirstat/ktreemapview.cpp @@ -629,8 +629,8 @@ KTreemapView::tileColor( KFileInfo * file ) if ( ext == "lo" ) return TQColor( 0xff, 0xa0, 0x00 ); if ( ext == "Po" ) return TQColor( 0xff, 0xa0, 0x00 ); if ( ext == "al" ) return TQColor( 0xff, 0xa0, 0x00 ); - if ( ext == "tqmoc.cpp" ) return TQColor( 0xff, 0xa0, 0x00 ); - if ( ext == "tqmoc.cc" ) return TQColor( 0xff, 0xa0, 0x00 ); + if ( ext == "moc.cpp" ) return TQColor( 0xff, 0xa0, 0x00 ); + if ( ext == "moc.cc" ) return TQColor( 0xff, 0xa0, 0x00 ); if ( ext == "elc" ) return TQColor( 0xff, 0xa0, 0x00 ); if ( ext == "la" ) return TQColor( 0xff, 0xa0, 0x00 ); if ( ext == "a" ) return TQColor( 0xff, 0xa0, 0x00 ); |