diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-07-07 21:14:06 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-07-07 21:14:06 +0000 |
commit | afbfdc507bfaafc8824a9808311d57a9ece87510 (patch) | |
tree | 47be45bbd69c321ce79e14b683e59318748be9cb /kexi/plugins | |
parent | 880d042b2902fae8007f202dd35ad9330499867b (diff) | |
download | koffice-afbfdc507bfaafc8824a9808311d57a9ece87510.tar.gz koffice-afbfdc507bfaafc8824a9808311d57a9ece87510.zip |
Rename incorrect instances of tqrepaint[...] to repaint[...]
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/koffice@1240369 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kexi/plugins')
-rw-r--r-- | kexi/plugins/forms/kexiformview.cpp | 2 | ||||
-rw-r--r-- | kexi/plugins/forms/widgets/kexidbform.cpp | 6 | ||||
-rw-r--r-- | kexi/plugins/forms/widgets/kexidblabel.cpp | 2 | ||||
-rw-r--r-- | kexi/plugins/importexport/csv/kexicsvimportdialog.cpp | 4 | ||||
-rw-r--r-- | kexi/plugins/reports/kexireportform.cpp | 6 |
5 files changed, 10 insertions, 10 deletions
diff --git a/kexi/plugins/forms/kexiformview.cpp b/kexi/plugins/forms/kexiformview.cpp index 9a14a0c9..189d515f 100644 --- a/kexi/plugins/forms/kexiformview.cpp +++ b/kexi/plugins/forms/kexiformview.cpp @@ -1219,7 +1219,7 @@ KexiFormView::insertAutoFields(const TQString& sourceMimeType, const TQString& s m_scrollView->tqrepaint(); m_scrollView->viewport()->tqrepaint(); - m_scrollView->tqrepaintContents(); + m_scrollView->repaintContents(); m_scrollView->updateContents(); m_scrollView->clipper()->tqrepaint(); m_scrollView->refreshContentsSize(); diff --git a/kexi/plugins/forms/widgets/kexidbform.cpp b/kexi/plugins/forms/widgets/kexidbform.cpp index 12210430..8c9534d2 100644 --- a/kexi/plugins/forms/widgets/kexidbform.cpp +++ b/kexi/plugins/forms/widgets/kexidbform.cpp @@ -126,7 +126,7 @@ KexiDBForm::~KexiDBForm() KexiDataAwareObjectInterface* KexiDBForm::dataAwareObject() const { return d->dataAwareObject; } //tqrepaint all tqchildren widgets -static void tqrepaintAll(TQWidget *w) +static void repaintAll(TQWidget *w) { TQObjectList *list = w->queryList(TQWIDGET_OBJECT_NAME_STRING); TQObjectListIt it(*list); @@ -182,7 +182,7 @@ KexiDBForm::drawRects(const TQValueList<TQRect> &list, int type) void KexiDBForm::initBuffer() { - tqrepaintAll(this); + repaintAll(this); d->buffer.resize( width(), height() ); d->buffer = TQPixmap::grabWindow( winId() ); d->prev_rect = TQRect(); @@ -203,7 +203,7 @@ KexiDBForm::clearForm() clearWFlags( WPaintUnclipped ); p.end(); - tqrepaintAll(this); + repaintAll(this); } void diff --git a/kexi/plugins/forms/widgets/kexidblabel.cpp b/kexi/plugins/forms/widgets/kexidblabel.cpp index db946141..af539e3d 100644 --- a/kexi/plugins/forms/widgets/kexidblabel.cpp +++ b/kexi/plugins/forms/widgets/kexidblabel.cpp @@ -454,7 +454,7 @@ void KexiDBLabel::updatePixmap() { d->internalLabel->setFixedSize( size() ); d->internalLabel->setPalette( palette() ); d->internalLabel->tqsetAlignment( tqalignment() ); -// d->shadowPixmap = KPixmap(); //parallel tqrepaints won't hurt us cause incomplete pixmap +// d->shadowPixmap = KPixmap(); //parallel repaints won't hurt us cause incomplete pixmap KPixmap shadowPixmap = d->internalLabel->getShadowPixmap(); if (shadowPixmap.isNull()) return; diff --git a/kexi/plugins/importexport/csv/kexicsvimportdialog.cpp b/kexi/plugins/importexport/csv/kexicsvimportdialog.cpp index b7bcb80e..bc3efc62 100644 --- a/kexi/plugins/importexport/csv/kexicsvimportdialog.cpp +++ b/kexi/plugins/importexport/csv/kexicsvimportdialog.cpp @@ -1250,7 +1250,7 @@ void KexiCSVImportDialog::delimiterChanged(const TQString& delimiter) Q_UNUSED(delimiter); m_columnsAdjusted = false; m_detectDelimiter = false; //selected by hand: do not detect in the future - //delayed, otherwise combobox won't be tqrepainted + //delayed, otherwise combobox won't be repainted fillTableLater(); } @@ -1264,7 +1264,7 @@ void KexiCSVImportDialog::textquoteSelected(int) kexipluginsdbg << "KexiCSVImportDialog::textquoteSelected(): " << m_textquote << endl; - //delayed, otherwise combobox won't be tqrepainted + //delayed, otherwise combobox won't be repainted fillTableLater(); } diff --git a/kexi/plugins/reports/kexireportform.cpp b/kexi/plugins/reports/kexireportform.cpp index f77b41a5..11c49c84 100644 --- a/kexi/plugins/reports/kexireportform.cpp +++ b/kexi/plugins/reports/kexireportform.cpp @@ -41,7 +41,7 @@ KexiReportForm::~KexiReportForm() } //tqrepaint all tqchildren widgets -static void tqrepaintAll(TQWidget *w) +static void repaintAll(TQWidget *w) { TQObjectList *list = w->queryList(TQWIDGET_OBJECT_NAME_STRING); TQObjectListIt it(*list); @@ -93,7 +93,7 @@ KexiReportForm::drawRects(const TQValueList<TQRect> &list, int type) void KexiReportForm::initBuffer() { - tqrepaintAll(this); + repaintAll(this); buffer.resize( width(), height() ); buffer = TQPixmap::grabWindow( winId() ); prev_rect = TQRect(); @@ -114,7 +114,7 @@ KexiReportForm::clearForm() clearWFlags( WPaintUnclipped ); p.end(); - tqrepaintAll(this); + repaintAll(this); } void |