diff options
author | Michele Calgaro <[email protected]> | 2025-01-14 15:08:54 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2025-02-03 21:34:30 +0900 |
commit | 834496cf73084adeb3959b6e2c11f104955bb69a (patch) | |
tree | 4e9221c9c4bcaa2c2681f3e255b0c771379c379c /kcontrol/konsole/schemaeditor.cpp | |
parent | 1a5b54f42c0218aef7def4bc2d5cbcc0ed6cfadd (diff) | |
download | tdebase-834496cf73084adeb3959b6e2c11f104955bb69a.tar.gz tdebase-834496cf73084adeb3959b6e2c11f104955bb69a.zip |
Use tdeApp
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'kcontrol/konsole/schemaeditor.cpp')
-rw-r--r-- | kcontrol/konsole/schemaeditor.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kcontrol/konsole/schemaeditor.cpp b/kcontrol/konsole/schemaeditor.cpp index 801880b8b..8f56905f3 100644 --- a/kcontrol/konsole/schemaeditor.cpp +++ b/kcontrol/konsole/schemaeditor.cpp @@ -77,7 +77,7 @@ SchemaEditor::SchemaEditor(TQWidget * parent, const char *name) connect(spix, TQ_SIGNAL(done(bool)), TQ_SLOT(previewLoaded(bool))); - DCOPClient *client = kapp->dcopClient(); + DCOPClient *client = tdeApp->dcopClient(); if (!client->isAttached()) client->attach(); TQByteArray data; @@ -666,7 +666,7 @@ void SchemaEditor::readSchema(int num) continue; if (!(0 <= bo && bo <= 1)) continue; - color[fi] = kapp->palette().active().text(); + color[fi] = tdeApp->palette().active().text(); transparent[fi] = tr; bold[fi] = bo; type[fi] = 1; @@ -681,7 +681,7 @@ void SchemaEditor::readSchema(int num) continue; if (!(0 <= bo && bo <= 1)) continue; - color[fi] = kapp->palette().active().base(); + color[fi] = tdeApp->palette().active().base(); transparent[fi] = tr; bold[fi] = bo; type[fi] = 2; |