diff options
Diffstat (limited to 'lib/kotext/KoListStyleStack.h')
-rw-r--r-- | lib/kotext/KoListStyleStack.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/lib/kotext/KoListStyleStack.h b/lib/kotext/KoListStyleStack.h index 5dc95b4b..0b77bf44 100644 --- a/lib/kotext/KoListStyleStack.h +++ b/lib/kotext/KoListStyleStack.h @@ -20,8 +20,8 @@ #ifndef KOLISTSTYLESTACK_H #define KOLISTSTYLESTACK_H -#include <qdom.h> -#include <qvaluestack.h> +#include <tqdom.h> +#include <tqvaluestack.h> /** * This class implements the list styles currently active at a given point. @@ -45,14 +45,14 @@ public: /** * Pushes the new list-style onto the stack. */ - void push( const QDomElement& style ); + void push( const TQDomElement& style ); /// @return true if we're inside a list (i.e. the stack isn't empty) bool hasListStyle() const { return !m_stack.isEmpty(); } /// @return currenty applicable list style, i.e. the one on top of the stack /// Most list-level properties are the attributes of that element. - QDomElement currentListStyle() const; + TQDomElement currentListStyle() const; /** * @return the style:list-level-properties for the currenty applicable list style. @@ -60,12 +60,12 @@ public: * like text:min-label-width, text:space-before, and style:font-name * are the attributes of that element. */ - QDomElement currentListStyleProperties() const; + TQDomElement currentListStyleProperties() const; /** * @return the style:text-properties for the currenty applicable list style. */ - QDomElement currentListStyleTextProperties() const; + TQDomElement currentListStyleTextProperties() const; /** * Set the initial level of the list, i.e. of item at the bottom of the stack. @@ -82,7 +82,7 @@ public: private: - QValueStack<QDomElement> m_stack; + TQValueStack<TQDomElement> m_stack; int m_initialLevel; }; |