summaryrefslogtreecommitdiffstats
path: root/kexi/formeditor/container.h
diff options
context:
space:
mode:
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);