summaryrefslogtreecommitdiffstats
path: root/kspell2/ui/dialog.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:46:43 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:46:43 +0000
commitffe8a83e053396df448e9413828527613ca3bd46 (patch)
treea73d4169e02df4a50f9a12cb165fcd0ab5bac7c6 /kspell2/ui/dialog.h
parent682bf3bfdcbcbb1fca85e8a36ed03e062e0555d5 (diff)
downloadtdelibs-ffe8a83e053396df448e9413828527613ca3bd46.tar.gz
tdelibs-ffe8a83e053396df448e9413828527613ca3bd46.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdelibs@1157647 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kspell2/ui/dialog.h')
-rw-r--r--kspell2/ui/dialog.h28
1 files changed, 14 insertions, 14 deletions
diff --git a/kspell2/ui/dialog.h b/kspell2/ui/dialog.h
index 20d295c96..1da714c7c 100644
--- a/kspell2/ui/dialog.h
+++ b/kspell2/ui/dialog.h
@@ -33,30 +33,30 @@ namespace KSpell2
Q_OBJECT
public:
Dialog( BackgroundChecker *checker,
- QWidget *parent, const char *name=0 );
+ TQWidget *parent, const char *name=0 );
~Dialog();
- QString originalBuffer() const;
- QString buffer() const;
+ TQString originalBuffer() const;
+ TQString buffer() const;
void show();
void activeAutoCorrect( bool _active );
public slots:
- void setBuffer( const QString& );
+ void setBuffer( const TQString& );
void setFilter( Filter* filter );
signals:
- void done( const QString& newBuffer );
- void misspelling( const QString& word, int start );
- void replace( const QString& oldWord, int start,
- const QString& newWord );
+ void done( const TQString& newBuffer );
+ void misspelling( const TQString& word, int start );
+ void replace( const TQString& oldWord, int start,
+ const TQString& newWord );
void stop();
void cancel();
- void autoCorrect( const QString & currentWord, const QString & replaceWord );
+ void autoCorrect( const TQString & currentWord, const TQString & replaceWord );
private slots:
- void slotMisspelling(const QString& word, int start );
+ void slotMisspelling(const TQString& word, int start );
void slotDone();
void slotFinished();
@@ -68,13 +68,13 @@ namespace KSpell2
void slotSkip();
void slotSkipAll();
void slotSuggest();
- void slotChangeLanguage( const QString& );
- void slotSelectionChanged( QListViewItem * );
+ void slotChangeLanguage( const TQString& );
+ void slotSelectionChanged( TQListViewItem * );
void slotAutocorrect();
private:
- void updateDialog( const QString& word );
- void fillSuggestions( const QStringList& suggs );
+ void updateDialog( const TQString& word );
+ void fillSuggestions( const TQStringList& suggs );
void initConnections();
void initGui();
void continueChecking();