diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-07-15 19:08:22 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-07-18 09:31:41 +0900 |
commit | a30f5359f03c3017fa19a6770fab32d25d22cb87 (patch) | |
tree | cb365dd7a1c3666e3f972c6cad04be7b8e846cba /doc/html/listviews-example.html | |
parent | 25ad1267da6916e738a126ff5a9b41cd686adfc6 (diff) | |
download | tqt3-a30f5359f03c3017fa19a6770fab32d25d22cb87.tar.gz tqt3-a30f5359f03c3017fa19a6770fab32d25d22cb87.zip |
Rename graphics class nt* related files to equivalent tq* (part 1)
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/listviews-example.html')
-rw-r--r-- | doc/html/listviews-example.html | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/doc/html/listviews-example.html b/doc/html/listviews-example.html index b1731dca1..7c0ea7e23 100644 --- a/doc/html/listviews-example.html +++ b/doc/html/listviews-example.html @@ -165,7 +165,7 @@ class MessageListItem : public <a href="qlistviewitem.html">TQListViewItem</a> public: MessageListItem( <a href="ntqlistview.html">TQListView</a> *parent, Message *m ); - virtual void paintCell( <a href="ntqpainter.html">TQPainter</a> *p, const <a href="qcolorgroup.html">TQColorGroup</a> &cg, + virtual void paintCell( <a href="tqpainter.html">TQPainter</a> *p, const <a href="tqcolorgroup.html">TQColorGroup</a> &cg, int column, int width, int alignment ); Message *message() { return myMessage; } @@ -222,7 +222,7 @@ protected slots: #include "listviews.h" #include <<a href="qlabel-h.html">ntqlabel.h</a>> -#include <<a href="qpainter-h.html">ntqpainter.h</a>> +#include <<a href="tqpainter-h.html">tqpainter.h</a>> #include <<a href="qpalette-h.html">ntqpalette.h</a>> #include <<a href="tqobjectlist-h.html">tqobjectlist.h</a>> #include <<a href="tqpopupmenu-h.html">tqpopupmenu.h</a>> @@ -296,18 +296,18 @@ void <a name="f210"></a>FolderListItem::insertSubFolders( const <a href="tqobjec <a href="qlistviewitem.html#setText">setText</a>( 2, myMessage->header().datetime().toString() ); } -<a name="x157"></a>void MessageListItem::<a href="qlistviewitem.html#paintCell">paintCell</a>( <a href="ntqpainter.html">TQPainter</a> *p, const <a href="qcolorgroup.html">TQColorGroup</a> &cg, +<a name="x157"></a>void MessageListItem::<a href="qlistviewitem.html#paintCell">paintCell</a>( <a href="tqpainter.html">TQPainter</a> *p, const <a href="tqcolorgroup.html">TQColorGroup</a> &cg, int column, int width, int alignment ) { - <a href="qcolorgroup.html">TQColorGroup</a> _cg( cg ); -<a name="x135"></a> <a href="ntqcolor.html">TQColor</a> c = _cg.<a href="qcolorgroup.html#text">text</a>(); + <a href="tqcolorgroup.html">TQColorGroup</a> _cg( cg ); +<a name="x135"></a> <a href="tqcolor.html">TQColor</a> c = _cg.<a href="tqcolorgroup.html#text">text</a>(); if ( myMessage->state() == Message::Unread ) -<a name="x134"></a> _cg.<a href="qcolorgroup.html#setColor">setColor</a>( TQColorGroup::Text, TQt::red ); +<a name="x134"></a> _cg.<a href="tqcolorgroup.html#setColor">setColor</a>( TQColorGroup::Text, TQt::red ); TQListViewItem::<a href="qlistviewitem.html#paintCell">paintCell</a>( p, _cg, column, width, alignment ); - _cg.<a href="qcolorgroup.html#setColor">setColor</a>( TQColorGroup::Text, c ); + _cg.<a href="tqcolorgroup.html#setColor">setColor</a>( TQColorGroup::Text, c ); } // ----------------------------------------------------------------- |