diff options
Diffstat (limited to 'kword/KWDocument.h')
-rw-r--r-- | kword/KWDocument.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/kword/KWDocument.h b/kword/KWDocument.h index 029930d8..cab789f8 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; |