summaryrefslogtreecommitdiffstats
path: root/languages/pascal/compiler/dccoptions
diff options
context:
space:
mode:
Diffstat (limited to 'languages/pascal/compiler/dccoptions')
-rw-r--r--languages/pascal/compiler/dccoptions/CMakeLists.txt6
-rw-r--r--languages/pascal/compiler/dccoptions/dccoptionsplugin.h2
-rw-r--r--languages/pascal/compiler/dccoptions/kdevdccoptions.desktop50
-rw-r--r--languages/pascal/compiler/dccoptions/optiontabs.cpp4
-rw-r--r--languages/pascal/compiler/dccoptions/optiontabs.h2
5 files changed, 13 insertions, 51 deletions
diff --git a/languages/pascal/compiler/dccoptions/CMakeLists.txt b/languages/pascal/compiler/dccoptions/CMakeLists.txt
index ae6c6388..4c860bba 100644
--- a/languages/pascal/compiler/dccoptions/CMakeLists.txt
+++ b/languages/pascal/compiler/dccoptions/CMakeLists.txt
@@ -25,7 +25,11 @@ link_directories(
##### other data ################################
-install( FILES kdevdccoptions.desktop DESTINATION ${SERVICES_INSTALL_DIR} )
+tde_create_translated_desktop(
+ SOURCE kdevdccoptions.desktop
+ DESTINATION ${SERVICES_INSTALL_DIR}
+ PO_DIR tdevelop-desktops
+)
##### libkdevdccoptions (module) ################
diff --git a/languages/pascal/compiler/dccoptions/dccoptionsplugin.h b/languages/pascal/compiler/dccoptions/dccoptionsplugin.h
index d8465520..7e9a9772 100644
--- a/languages/pascal/compiler/dccoptions/dccoptionsplugin.h
+++ b/languages/pascal/compiler/dccoptions/dccoptionsplugin.h
@@ -17,7 +17,7 @@
class DccOptionsPlugin : public KDevCompilerOptions
{
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/languages/pascal/compiler/dccoptions/kdevdccoptions.desktop b/languages/pascal/compiler/dccoptions/kdevdccoptions.desktop
index 3d4d57f2..e54d0fbc 100644
--- a/languages/pascal/compiler/dccoptions/kdevdccoptions.desktop
+++ b/languages/pascal/compiler/dccoptions/kdevdccoptions.desktop
@@ -1,52 +1,10 @@
[Desktop Entry]
+Name=DccOptions
+
+Comment=Borland Delphi Compiler
+
Type=Service
Exec=dcc
-Comment=Borland Delphi Compiler
-Comment[br]=Dastumer Delphi Borland
-Comment[ca]=Compilador Delphi de Borland
-Comment[da]=Borland Delphi oversætter
-Comment[el]=Μεταγλωττιστής Borland Delphi
-Comment[es]=Compilador de Delphi de Borland
-Comment[et]=Borland Delphi kompilaator
-Comment[eu]=Borland Delphi konpiladorea
-Comment[fa]=مترجم برلند دلفی
-Comment[fr]=Compilateur Delphi de Borland
-Comment[ga]=Tiomsaitheoir Borland Delphi
-Comment[gl]=Compilador Borland Delphi
-Comment[hi]=बोरलैंड डेल्फ़ी कम्पायलर
-Comment[hu]=Borland Delphi fordítóprogram
-Comment[is]=Borland Delphi þýðandi
-Comment[it]=Compilatore per Borland Delphi
-Comment[ja]=Borland Delphi コンパイラ
-Comment[nds]=Borland Delphi-Kompilerer
-Comment[ne]=बोरल्यान्ड डेल्पी कम्पाइलर
-Comment[nl]=Borland Delphi-compiler
-Comment[pl]=Kompilator Borland Delphi
-Comment[pt]=Compilador de Borland Delphi
-Comment[pt_BR]=Compilador Delphi da Borland Delphi
-Comment[ru]=Компилятор Borland Delphi
-Comment[sk]=Borland Delphi kompilátor
-Comment[sl]=Prevajalnik za Borland Delphi
-Comment[sr]=Borland-ов преводилац Delphi-ја
-Comment[sr@Latn]=Borland-ov prevodilac Delphi-ja
-Comment[sv]=Borland Delphi kompilator
-Comment[ta]=பொர்லான்ட் டெல்பி தொகுப்பி
-Comment[tg]=Талфифгари Borland Delphi
-Comment[tr]=Borland Delphi Derleyicisi
-Comment[zh_CN]=Borland Delphi 编译器
-Comment[zh_TW]=Borland Delphi 編譯器
-Name=DccOptions
-Name[da]=Delphi oversætter indstillinger
-Name[de]=Delphi-Einstellungen (TDevelop)
-Name[hi]=डीसीसी-विकल्प
-Name[nds]=Delphi-Optschonen (TDevelop)
-Name[pl]=Opcje Dcc
-Name[sk]=Dcc možnosti
-Name[sl]=Možnosti Dcc
-Name[sv]=Alternativ för dcc
-Name[ta]=Dccவிருப்பங்கள்
-Name[tg]=DccИнтихобҳо
-Name[zh_TW]=Dcc 選項
X-TDE-ServiceTypes=TDevelop/CompilerOptions
X-TDE-Library=libkdevdccoptions
X-TDevelop-Version=5
diff --git a/languages/pascal/compiler/dccoptions/optiontabs.cpp b/languages/pascal/compiler/dccoptions/optiontabs.cpp
index 306fe5a0..bc586c0c 100644
--- a/languages/pascal/compiler/dccoptions/optiontabs.cpp
+++ b/languages/pascal/compiler/dccoptions/optiontabs.cpp
@@ -357,8 +357,8 @@ DebugOptimTab::DebugOptimTab( TQWidget * parent, const char * name )
layout3->addWidget(release);
layout3->addWidget(debug);
TQApplication::sendPostedEvents(this, TQEvent::ChildInserted);
- connect(release, TQT_SIGNAL(clicked()), this, TQT_SLOT(setReleaseOptions()));
- connect(debug, TQT_SIGNAL(clicked()), this, TQT_SLOT(setDebugOptions()));
+ connect(release, TQ_SIGNAL(clicked()), this, TQ_SLOT(setReleaseOptions()));
+ connect(debug, TQ_SIGNAL(clicked()), this, TQ_SLOT(setDebugOptions()));
layout->addStretch();
}
diff --git a/languages/pascal/compiler/dccoptions/optiontabs.h b/languages/pascal/compiler/dccoptions/optiontabs.h
index 04351ea7..07977e42 100644
--- a/languages/pascal/compiler/dccoptions/optiontabs.h
+++ b/languages/pascal/compiler/dccoptions/optiontabs.h
@@ -92,7 +92,7 @@ private:
class DebugOptimTab : public TQWidget
{
- Q_OBJECT
+ TQ_OBJECT
public:
DebugOptimTab( TQWidget *parent=0, const char *name=0 );