diff options
Diffstat (limited to 'src/profileengine')
-rw-r--r-- | src/profileengine/editor/addprofilewidget.ui | 2 | ||||
-rw-r--r-- | src/profileengine/editor/profileeditorbase.ui | 2 | ||||
-rw-r--r-- | src/profileengine/lib/profile.cpp | 6 |
3 files changed, 5 insertions, 5 deletions
diff --git a/src/profileengine/editor/addprofilewidget.ui b/src/profileengine/editor/addprofilewidget.ui index dccb234e..a44765ab 100644 --- a/src/profileengine/editor/addprofilewidget.ui +++ b/src/profileengine/editor/addprofilewidget.ui @@ -117,5 +117,5 @@ </widget> </vbox> </widget> -<tqlayoutdefaults spacing="6" margin="11"/> +<layoutdefaults spacing="6" margin="11"/> </UI> diff --git a/src/profileengine/editor/profileeditorbase.ui b/src/profileengine/editor/profileeditorbase.ui index 094eeffd..d8ad68d3 100644 --- a/src/profileengine/editor/profileeditorbase.ui +++ b/src/profileengine/editor/profileeditorbase.ui @@ -657,7 +657,7 @@ <slot>addDisabled()</slot> <slot>delDisabled()</slot> </Q_SLOTS> -<tqlayoutdefaults spacing="6" margin="11"/> +<layoutdefaults spacing="6" margin="11"/> <includehints> <includehint>kpushbutton.h</includehint> <includehint>klistview.h</includehint> diff --git a/src/profileengine/lib/profile.cpp b/src/profileengine/lib/profile.cpp index 39d247bf..5c94d566 100644 --- a/src/profileengine/lib/profile.cpp +++ b/src/profileengine/lib/profile.cpp @@ -104,10 +104,10 @@ void Profile::save() Profile::EntryList Profile::list(List type) { - EntryList tqparentList; + EntryList parentList; if (m_parent) - tqparentList = m_parent->list(type); - EntryList list = tqparentList; + parentList = m_parent->list(type); + EntryList list = parentList; for (EntryList::iterator it = list.begin(); it != list.end(); ++it) (*it).derived = true; TQStringList &personalList = listByType(type); |