summaryrefslogtreecommitdiffstats
path: root/kword/KWDocument.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 /kword/KWDocument.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 'kword/KWDocument.h')
-rw-r--r--kword/KWDocument.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/kword/KWDocument.h b/kword/KWDocument.h
index 029930d8b..cab789f8d 100644
--- a/kword/KWDocument.h
+++ b/kword/KWDocument.h
@@ -131,7 +131,7 @@ public:
friend class KWOasisLoader;
friend class KWStartupWidget;
- KWDocument( TQWidget *tqparentWidget = 0, const char *widname = 0, TQObject* tqparent = 0, const char* name = 0, bool singleViewMode = false );
+ KWDocument( TQWidget *parentWidget = 0, const char *widname = 0, TQObject* tqparent = 0, const char* name = 0, bool singleViewMode = false );
~KWDocument();
enum ProcessingType {WP = 0, DTP = 1};
@@ -139,7 +139,7 @@ public:
static const int CURRENT_SYNTAX_VERSION;
public:
- virtual bool initDoc(InitDocFlags flags, TQWidget* tqparentWidget=0);
+ virtual bool initDoc(InitDocFlags flags, TQWidget* parentWidget=0);
virtual bool loadOasis( const TQDomDocument& doc, KoOasisStyles& oasisStyles, const TQDomDocument& settings, KoStore* store );
@@ -208,7 +208,7 @@ public:
virtual void addShell( KoMainWindow *shell );
- KWPartFrameSet* insertObject( const KoRect& rect, KoDocumentEntry& e, TQWidget* tqparentWidget );
+ KWPartFrameSet* insertObject( const KoRect& rect, KoDocumentEntry& e, TQWidget* parentWidget );
/// Create an embedded document; used by KWPartFrameSet but is defined here
/// because KoDocument:insertChild is protected.
@@ -491,7 +491,7 @@ public:
/// This is used by loadFrameSets() and by KWCanvas to paste framesets
KWFrameSet *loadFrameSet( TQDomElement framesetElem, bool loadFrames = true , bool loadFootnote = true);
void loadEmbeddedObjects( TQDomElement& word );
- void saveEmbeddedObjects( TQDomElement& tqparentElem, const TQPtrList<KoDocumentChild>& childList );
+ void saveEmbeddedObjects( TQDomElement& parentElem, const TQPtrList<KoDocumentChild>& childList );
void loadEmbedded( const TQDomElement &embedded );
void recalcVariables( int type );
@@ -526,9 +526,9 @@ public:
TQString viewModeType() const { return m_viewModeType; }
/**
- * The view mode used for text tqlayouting.
+ * The view mode used for text layouting.
*/
- KWViewMode* tqlayoutViewMode() const { return m_layoutViewMode; }
+ KWViewMode* layoutViewMode() const { return m_layoutViewMode; }
/**
* Changes m_viewMode, and updates all views to this viewmode
@@ -829,9 +829,9 @@ protected:
void loadFrameSets( const TQDomElement &framesets );
void loadStyleTemplates( const TQDomElement &styles );
- void saveStyle( KoParagStyle *sty, TQDomElement tqparentElem );
- void saveFrameStyle( KWFrameStyle *sty, TQDomElement tqparentElem );
- void saveTableStyle( KWTableStyle *sty, TQDomElement tqparentElem );
+ void saveStyle( KoParagStyle *sty, TQDomElement parentElem );
+ void saveFrameStyle( KWFrameStyle *sty, TQDomElement parentElem );
+ void saveTableStyle( KWTableStyle *sty, TQDomElement parentElem );
void loadFrameStyleTemplates( const TQDomElement &styles );
void loadDefaultFrameStyleTemplates();
@@ -971,7 +971,7 @@ private:
/// The name of the viewmode used by all views.
TQString m_viewModeType;
- /// The viewmode used for text tqlayouting
+ /// The viewmode used for text layouting
KWViewMode* m_layoutViewMode;
KWVariableCollection *m_varColl;
KWBgSpellCheck *m_bgSpellCheck;