diff options
Diffstat (limited to 'kexi/widget/tableview')
-rw-r--r-- | kexi/widget/tableview/kexiblobtableedit.cpp | 2 | ||||
-rw-r--r-- | kexi/widget/tableview/kexiblobtableedit.h | 4 | ||||
-rw-r--r-- | kexi/widget/tableview/kexiinputtableedit.cpp | 2 | ||||
-rw-r--r-- | kexi/widget/tableview/kexitableview.cpp | 6 | ||||
-rw-r--r-- | kexi/widget/tableview/kexitableview.h | 2 | ||||
-rw-r--r-- | kexi/widget/tableview/kexitextformatter.cpp | 2 |
6 files changed, 9 insertions, 9 deletions
diff --git a/kexi/widget/tableview/kexiblobtableedit.cpp b/kexi/widget/tableview/kexiblobtableedit.cpp index 1218a978..3502e15d 100644 --- a/kexi/widget/tableview/kexiblobtableedit.cpp +++ b/kexi/widget/tableview/kexiblobtableedit.cpp @@ -571,7 +571,7 @@ void KexiKIconTableEdit::setupContents( TQPainter *p, bool /*focused*/, const TQ TQPixmap *pix = 0; if (!key.isEmpty() && !(pix = d->pixmapCache[ key ])) { //cache pixmap - TQPixmap pm = KGlobal::iconLoader()->loadIcon( key, KIcon::Small, + TQPixmap pm = TDEGlobal::iconLoader()->loadIcon( key, KIcon::Small, 0, KIcon::DefaultState, 0L, true/*canReturnNull*/ ); if (!pm.isNull()) { pix = new TQPixmap(pm); diff --git a/kexi/widget/tableview/kexiblobtableedit.h b/kexi/widget/tableview/kexiblobtableedit.h index a3b1c0f2..4d17b3b9 100644 --- a/kexi/widget/tableview/kexiblobtableedit.h +++ b/kexi/widget/tableview/kexiblobtableedit.h @@ -30,7 +30,7 @@ #include "kexicelleditorfactory.h" class KTempFile; -class KProcess; +class TDEProcess; class TQTextEdit; class KexiBlobTableEdit : public KexiTableEdit @@ -113,7 +113,7 @@ class KexiBlobTableEdit : public KexiTableEdit class Private; Private *d; //todo KTempFile* m_tempFile; -//todo KProcess* m_proc; +//todo TDEProcess* m_proc; //todo TQTextEdit *m_content; }; diff --git a/kexi/widget/tableview/kexiinputtableedit.cpp b/kexi/widget/tableview/kexiinputtableedit.cpp index 36b662f9..4f043117 100644 --- a/kexi/widget/tableview/kexiinputtableedit.cpp +++ b/kexi/widget/tableview/kexiinputtableedit.cpp @@ -83,7 +83,7 @@ void KexiInputTableEdit::init() m_textFormatter.setField( field() ); //init settings - m_decsym = KGlobal::locale()->decimalSymbol(); + m_decsym = TDEGlobal::locale()->decimalSymbol(); if (m_decsym.isEmpty()) m_decsym=".";//default diff --git a/kexi/widget/tableview/kexitableview.cpp b/kexi/widget/tableview/kexitableview.cpp index fa474bfc..4303e551 100644 --- a/kexi/widget/tableview/kexitableview.cpp +++ b/kexi/widget/tableview/kexitableview.cpp @@ -60,7 +60,7 @@ #include <kexidb/cursor.h> KexiTableView::Appearance::Appearance(TQWidget *widget) - : alternateBackgroundColor( KGlobalSettings::alternateBackgroundColor() ) + : alternateBackgroundColor( TDEGlobalSettings::alternateBackgroundColor() ) { //set defaults if (tqApp) { @@ -207,7 +207,7 @@ KexiTableView::KexiTableView(KexiTableViewData* data, TQWidget* parent, const ch // d->baseColor = colorGroup().base(); // d->textColor = colorGroup().text(); -// d->altColor = KGlobalSettings::alternateBackgroundColor(); +// d->altColor = TDEGlobalSettings::alternateBackgroundColor(); // d->grayColor = TQColor(200,200,200); d->diagonalGrayPattern = TQBrush(d->appearance.borderColor, TQt::BDiagPattern); @@ -2594,7 +2594,7 @@ KexiTableItem *KexiTableView::highlightedItem() const void KexiTableView::slotSettingsChanged(int category) { if (category==TDEApplication::SETTINGS_SHORTCUTS) { - d->contextMenuKey = KGlobalSettings::contextMenuKey(); + d->contextMenuKey = TDEGlobalSettings::contextMenuKey(); } } diff --git a/kexi/widget/tableview/kexitableview.h b/kexi/widget/tableview/kexitableview.h index f1692610..f4364eb8 100644 --- a/kexi/widget/tableview/kexitableview.h +++ b/kexi/widget/tableview/kexitableview.h @@ -94,7 +94,7 @@ public: current active palette */ TQColor emptyAreaColor; - /*! alternate background color, default is KGlobalSettings::alternateBackgroundColor() */ + /*! alternate background color, default is TDEGlobalSettings::alternateBackgroundColor() */ TQColor alternateBackgroundColor; /*! true if background altering should be enabled, true by default */ diff --git a/kexi/widget/tableview/kexitextformatter.cpp b/kexi/widget/tableview/kexitextformatter.cpp index 6045620a..9829f347 100644 --- a/kexi/widget/tableview/kexitextformatter.cpp +++ b/kexi/widget/tableview/kexitextformatter.cpp @@ -168,7 +168,7 @@ TQVariant KexiTextFormatter::textToValue(const TQString& text) const case KexiDB::Field::Double: { // replace custom decimal symbol with '.' as required by to{Float|Double}() TQString fixedText( text ); - fixedText.replace(KGlobal::locale()->decimalSymbol(), "."); + fixedText.replace(TDEGlobal::locale()->decimalSymbol(), "."); if (t == KexiDB::Field::Double) return fixedText.toDouble(); return fixedText.toFloat(); |