diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-01-07 03:45:53 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-01-07 03:45:53 +0000 |
commit | 10308be19ef7fa44699562cc75946e7ea1fdf6b9 (patch) | |
tree | 4bc444c00a79e88105f2cfce5b6209994c413ca0 /khtml/khtml_part.h | |
parent | 307136d8eef0ba133b78ceee8e901138d4c996a1 (diff) | |
download | tdelibs-10308be19ef7fa44699562cc75946e7ea1fdf6b9.tar.gz tdelibs-10308be19ef7fa44699562cc75946e7ea1fdf6b9.zip |
Revert automated changes
Sorry guys, they are just not ready for prime time
Work will continue as always
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdelibs@1212479 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'khtml/khtml_part.h')
-rw-r--r-- | khtml/khtml_part.h | 52 |
1 files changed, 26 insertions, 26 deletions
diff --git a/khtml/khtml_part.h b/khtml/khtml_part.h index e3c7b53f6..af8a1695d 100644 --- a/khtml/khtml_part.h +++ b/khtml/khtml_part.h @@ -243,10 +243,10 @@ public: * rendered in. You can specify two different parent objects for a * KHTMLPart, one parent for the KHTMLPart document and on parent * for the KHTMLView. If the second @p parent argument is 0L, then - * @p tqparentWidget is used as parent for both objects, the part and + * @p parentWidget is used as parent for both objects, the part and * the view. */ - KHTMLPart( TQWidget *tqparentWidget = 0, const char *widgetname = 0, + KHTMLPart( TQWidget *parentWidget = 0, const char *widgetname = 0, TQObject *parent = 0, const char *name = 0, GUIProfile prof = DefaultGUI ); KHTMLPart( KHTMLView *view, TQObject *parent = 0, const char *name = 0, GUIProfile prof = DefaultGUI ); @@ -629,7 +629,7 @@ public: * default style sheet. * * This gives a wide range of possibilities to - * change the tqlayout of the page. + * change the layout of the page. * * To have an effect this function has to be called after calling begin(). */ @@ -640,7 +640,7 @@ public: * default style sheet. * * This gives a wide range of possibilities to - * change the tqlayout of the page. + * change the layout of the page. * * To have an effect this function has to be called after calling begin(). */ @@ -697,7 +697,7 @@ public: TQCursor urlCursor() const; /** - * Extra Find options that can be used when calling the extended tqfindText(). + * Extra Find options that can be used when calling the extended findText(). * @since 3.3 */ enum FindOptions @@ -712,46 +712,46 @@ public: * search for. * @since 3.3 */ - void tqfindText(); + void findText(); /** * Starts a new search, but bypasses the user dialog. * @param str The string to search for. * @param options Find options. * @param parent Parent used for centering popups like "string not found". - * @param tqfindDialog Optionally, you can supply your own dialog. + * @param findDialog Optionally, you can supply your own dialog. * @since 3.3 */ - void tqfindText( const TQString &str, long options, TQWidget *parent = 0, - KFindDialog *tqfindDialog = 0 ); + void findText( const TQString &str, long options, TQWidget *parent = 0, + KFindDialog *findDialog = 0 ); /** * Initiates a text search. */ - void tqfindTextBegin(); + void findTextBegin(); /** * Finds the next occurrence of the string or expression. * If isRegExp is true then str is converted to a TQRegExp, and caseSensitive is ignored. - * @deprecated, use tqfindText( str, options, parent, tqfindDialog ) + * @deprecated, use findText( str, options, parent, findDialog ) */ - bool tqfindTextNext( const TQString &str, bool forward, bool caseSensitive, bool isRegExp ); + bool findTextNext( const TQString &str, bool forward, bool caseSensitive, bool isRegExp ); /** - * Finds the next occurence of a string set by @ref tqfindText() + * Finds the next occurence of a string set by @ref findText() * @return true if a new match was found. * @since 3.3 */ - bool tqfindTextNext(); + bool findTextNext(); /** - * Finds the next occurence of a string set by @ref tqfindText() - * @param reverse if true, revert seach direction (only if no tqfind dialog is used) + * Finds the next occurence of a string set by @ref findText() + * @param reverse if true, revert seach direction (only if no find dialog is used) * @return true if a new match was found. * @since 3.5 */ // KDE4 merge with default = false - bool tqfindTextNext( bool reverse ); + bool findTextNext( bool reverse ); /** * Sets the Zoom factor. The value is given in percent, larger values mean a @@ -906,17 +906,17 @@ public: /** * Finds a frame by name. Returns 0L if frame can't be found. */ - KHTMLPart *tqfindFrame( const TQString &f ); + KHTMLPart *findFrame( const TQString &f ); /** - * Recursively tqfinds the part containing the frame with name @p f + * Recursively finds the part containing the frame with name @p f * and checks if it is accessible by @p callingPart * Returns 0L if no suitable frame can't be found. * Returns parent part if a suitable frame was found and * frame info in @p *childFrame * @since 3.3 */ - KHTMLPart *tqfindFrameParent( KParts::ReadOnlyPart *callingPart, const TQString &f, khtml::ChildFrame **childFrame=0 ); + KHTMLPart *findFrameParent( KParts::ReadOnlyPart *callingPart, const TQString &f, khtml::ChildFrame **childFrame=0 ); /** * Return the current frame (the one that has focus) @@ -927,7 +927,7 @@ public: /** * Returns whether a frame with the specified name is exists or not. - * In contrary to the tqfindFrame method this one also returns true + * In contrary to the findFrame method this one also returns true * if the frame is defined but no displaying component has been * found/loaded, yet. */ @@ -941,7 +941,7 @@ public: /** * Finds a frame by name. Returns 0L if frame can't be found. */ - KParts::ReadOnlyPart *tqfindFramePart( const TQString &f ); + KParts::ReadOnlyPart *findFramePart( const TQString &f ); /** * Called by KJS. * Sets the StatusBarText assigned @@ -952,7 +952,7 @@ public: /** * Called by KJS. * Sets the DefaultStatusBarText assigned - * via window.defaulttqStatus + * via window.defaultStatus */ void setJSDefaultStatusBarText( const TQString &text ); @@ -966,7 +966,7 @@ public: /** * Called by KJS. * Returns the DefaultStatusBarText assigned - * via window.defaulttqStatus + * via window.defaultStatus */ TQString jsDefaultStatusBarText() const; @@ -1028,7 +1028,7 @@ public: KURL toplevelURL(); /** - * Checks whether the page tqcontains unsubmitted form changes. + * Checks whether the page contains unsubmitted form changes. * * @return true if form changes exist * @since 3.3 @@ -1168,7 +1168,7 @@ protected: * to be a object of your derived type, in which case you should return a new instance for * the mimetype 'text/html' . */ - virtual KParts::ReadOnlyPart *createPart( TQWidget *tqparentWidget, const char *widgetName, + virtual KParts::ReadOnlyPart *createPart( TQWidget *parentWidget, const char *widgetName, TQObject *parent, const char *name, const TQString &mimetype, TQString &serviceName, TQStringList &serviceTypes, const TQStringList ¶ms); |