diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-21 14:21:13 -0600 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2012-06-03 19:30:04 +0200 |
commit | 79e5d6be76392920c148aa615d9e3504f3388996 (patch) | |
tree | bc713fbfa18e2c962f2f1ea8adf9ec5c1ac187ee /kpovmodeler/pmdialogeditbase.h | |
parent | 5027dfec5092217f70492dd6712059e46b21d003 (diff) | |
download | tdegraphics-79e5d6be76392920c148aa615d9e3504f3388996.tar.gz tdegraphics-79e5d6be76392920c148aa615d9e3504f3388996.zip |
Rename obsolete tq methods to standard names
(cherry picked from commit ebbee358abafa1b5166404c6fe5cc44ae2837a57)
Diffstat (limited to 'kpovmodeler/pmdialogeditbase.h')
-rw-r--r-- | kpovmodeler/pmdialogeditbase.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kpovmodeler/pmdialogeditbase.h b/kpovmodeler/pmdialogeditbase.h index 77c37409..e2ae701a 100644 --- a/kpovmodeler/pmdialogeditbase.h +++ b/kpovmodeler/pmdialogeditbase.h @@ -42,7 +42,7 @@ class PMPovrayOutputWidget; /** * Base class for all widgets for editing object attributes. * - * Ensures a consistent tqlayout for all widgets. Widgets should not + * Ensures a consistent layout for all widgets. Widgets should not * created within the constructor, but with the functions @ref createTopWidgets * and @ref createBottomWidgets. * @@ -276,7 +276,7 @@ protected: * of the sub class. * * First call the function of the base class, then create and append - * the widgets to the top tqlayout. + * the widgets to the top layout. */ virtual void createTopWidgets( ) { }; @@ -284,7 +284,7 @@ protected: * Create widgets here, that should be placed under the widgets * of the sub class. * - * First create and append the widgets to the top tqlayout, then + * First create and append the widgets to the top layout, then * call the function of the base class */ virtual void createBottomWidgets( ); @@ -296,7 +296,7 @@ protected: virtual void saveContents( ); /** - * Returns a pointer to the top tqlayout + * Returns a pointer to the top layout */ TQBoxLayout* topLayout( ) const { return m_pTopLayout; } |