summaryrefslogtreecommitdiffstats
path: root/kexi/formeditor/container.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-07-09 02:23:29 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-07-09 02:23:29 +0000
commit7c71ab86d1f7e387fc3df63b48df07231f111862 (patch)
tree30ba2d2f840ff5fd458b6113e9c3f2e8a71d510d /kexi/formeditor/container.h
parentafbfdc507bfaafc8824a9808311d57a9ece87510 (diff)
downloadkoffice-7c71ab86d1f7e387fc3df63b48df07231f111862.tar.gz
koffice-7c71ab86d1f7e387fc3df63b48df07231f111862.zip
Remove the tq in front of these incorrectly TQt4-converted methods/data members:
tqrepaint[...] tqinvalidate[...] tqparent[...] tqmask[...] tqlayout[...] tqalignment[...] git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/koffice@1240522 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kexi/formeditor/container.h')
-rw-r--r--kexi/formeditor/container.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/kexi/formeditor/container.h b/kexi/formeditor/container.h
index a76c913a..f2ae1f14 100644
--- a/kexi/formeditor/container.h
+++ b/kexi/formeditor/container.h
@@ -107,13 +107,13 @@ class KFORMEDITOR_EXPORT Container : public TQObject
TQLayout* tqlayout() const { return m_layout; }
//! \return the type of the tqlayout associated to this Container's widget (see LayoutType enum).
- LayoutType tqlayoutType() const { return m_layType; }
+ LayoutType layoutType() const { return m_layType; }
//! \return the margin of this Container.
- int tqlayoutMargin() { return m_margin; }
+ int layoutMargin() { return m_margin; }
//! \return the spacing of this Container.
- int tqlayoutSpacing() { return m_spacing; }
+ int layoutSpacing() { return m_spacing; }
/*! Sets this Container to use \a type of tqlayout. The widget are inserted
automatically in the tqlayout following their positions.
@@ -126,8 +126,8 @@ class KFORMEDITOR_EXPORT Container : public TQObject
//! Sets the margin of this Container.
void setLayoutMargin(int margin) { m_margin = margin;}
- //! \return the string representing the tqlayoutType \a type.
- static TQString tqlayoutTypeToString(int type);
+ //! \return the string representing the layoutType \a type.
+ static TQString layoutTypeToString(int type);
//! \return the LayoutType (an int) for a given tqlayout name.
static LayoutType stringToLayoutType(const TQString &name);