diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-19 11:57:28 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-19 11:57:28 -0600 |
commit | dc07846059a60d069687585cc72ff501a2096296 (patch) | |
tree | 432ead5b09c6ace7e804629f1f74a3ed58f003e0 /juk/collectionlist.h | |
parent | 3c299dfe48c0060272c2966fff599b3b417e2ee4 (diff) | |
download | tdemultimedia-dc07846059a60d069687585cc72ff501a2096296.tar.gz tdemultimedia-dc07846059a60d069687585cc72ff501a2096296.zip |
Remove additional unneeded tq method conversions
Diffstat (limited to 'juk/collectionlist.h')
-rw-r--r-- | juk/collectionlist.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/juk/collectionlist.h b/juk/collectionlist.h index e26a8c3a..3fbf9a5a 100644 --- a/juk/collectionlist.h +++ b/juk/collectionlist.h @@ -172,8 +172,8 @@ public: virtual void refresh(); PlaylistItem *itemForPlaylist(const Playlist *playlist); void updateCollectionDict(const TQString &oldPath, const TQString &newPath); - void tqrepaint() const; - PlaylistItemList tqchildren() const { return m_tqchildren; } + void repaint() const; + PlaylistItemList children() const { return m_children; } protected: CollectionListItem(const FileHandle &file); @@ -192,7 +192,7 @@ protected: private: bool m_shuttingDown; - PlaylistItemList m_tqchildren; + PlaylistItemList m_children; }; #endif |