summaryrefslogtreecommitdiffstats
path: root/kdeui/keditcl.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-01-03 04:12:51 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-01-03 04:12:51 +0000
commit560378aaca1784ba19806a0414a32b20c744de39 (patch)
treece0dfd7c3febf2a1adc7603d1019a8be2083c415 /kdeui/keditcl.h
parentd4d5af1cdbd3cc65d095e0afc5b1f4260091cf5d (diff)
downloadtdelibs-560378aaca1784ba19806a0414a32b20c744de39.tar.gz
tdelibs-560378aaca1784ba19806a0414a32b20c744de39.zip
Automated conversion for enhanced compatibility with TQt for Qt4 3.4.0 TP1
NOTE: This will not compile with Qt4 (yet), however it does compile with Qt3 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdelibs@1211081 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kdeui/keditcl.h')
-rw-r--r--kdeui/keditcl.h36
1 files changed, 18 insertions, 18 deletions
diff --git a/kdeui/keditcl.h b/kdeui/keditcl.h
index 19f828c2b..c3f58b9c4 100644
--- a/kdeui/keditcl.h
+++ b/kdeui/keditcl.h
@@ -126,10 +126,10 @@ public:
KHistoryCombo *searchCombo() const;
/**
- * @returns the combobox containing the history of replaces. Can be used
+ * @returns the combobox containing the history of tqreplaces. Can be used
* to save and restore the history.
*/
- KHistoryCombo *replaceCombo() const;
+ KHistoryCombo *tqreplaceCombo() const;
bool case_sensitive();
bool get_direction();
@@ -149,9 +149,9 @@ private:
virtual void done(int i ) { KDialogBase::done(i); }
signals:
- void replace();
- void find();
- void replaceAll();
+ void tqreplace();
+ void tqfind();
+ void tqreplaceAll();
void done();
protected:
virtual void virtual_hook( int id, void* data );
@@ -194,7 +194,7 @@ public:
/**
* Save text from the edit widget to a text stream.
- * If @p softWrap is false soft line wrappings are replaced with line-feeds
+ * If @p softWrap is false soft line wrappings are tqreplaced with line-feeds
* If @p softWrap is true soft line wrappings are ignored.
* @since 3.1
**/
@@ -225,7 +225,7 @@ public:
/**
* Present a Search and Replace Dialog to the user.
**/
- void replace();
+ void tqreplace();
/**
* Present a "Goto Line" dialog to the user.
@@ -340,22 +340,22 @@ private slots:
/**
* @internal
**/
- void replace_slot();
+ void tqreplace_slot();
/**
* @internal
**/
- void replace_all_slot();
+ void tqreplace_all_slot();
/**
* @internal
**/
- void replace_search_slot();
+ void tqreplace_search_slot();
/**
* @internal
**/
- void replacedone_slot();
+ void tqreplacedone_slot();
/**
* Cursor moved...
@@ -368,7 +368,7 @@ protected:
bool regex, bool forward,int line, int col);
int doReplace(TQString s_pattern, bool case_sensitive,
- bool regex, bool forward,int line, int col,bool replace);
+ bool regex, bool forward,int line, int col,bool tqreplace);
/**
* Sets line and col to the position pos, considering word wrap.
@@ -401,25 +401,25 @@ protected:
void contentsDropEvent(TQDropEvent* e);
private:
- TQTimer* repaintTimer;
+ TQTimer* tqrepaintTimer;
QString killbufferstring;
TQWidget *parent;
KEdFind *srchdialog;
- KEdReplace *replace_dialog;
+ KEdReplace *tqreplace_dialog;
KEdGotoLine *gotodialog;
TQString pattern;
- bool can_replace;
+ bool can_tqreplace;
bool killing;
bool killtrue;
bool lastwasanewline;
bool saved_readonlystate;
int last_search;
- int last_replace;
- int replace_all_line;
- int replace_all_col;
+ int last_tqreplace;
+ int tqreplace_all_line;
+ int tqreplace_all_col;
int line_pos, col_pos;
bool fill_column_is_set;