Rename KCModule, KConfig, KIO, KServer, and KSocket to avoid conflicts with KDE4

pull/1/head
Timothy Pearson 12 years ago
parent fc49aab70d
commit 3c84b2ad06

@ -149,7 +149,7 @@ namespace KileDocument
//////////////////// configuration //////////////////// //////////////////// configuration ////////////////////
void CodeCompletion::readConfig(KConfig *config) void CodeCompletion::readConfig(TDEConfig *config)
{ {
KILE_DEBUG() << "=== CodeCompletion::readConfig ===================" << endl; KILE_DEBUG() << "=== CodeCompletion::readConfig ===================" << endl;
@ -197,7 +197,7 @@ namespace KileDocument
} }
} }
void CodeCompletion::readKateConfigFlags(KConfig *config) void CodeCompletion::readKateConfigFlags(TDEConfig *config)
{ {
config->setGroup("Kate Document Defaults"); config->setGroup("Kate Document Defaults");
m_autobrackets = ( config->readNumEntry("Basic Config Flags",0) & cfAutoBrackets ); m_autobrackets = ( config->readNumEntry("Basic Config Flags",0) & cfAutoBrackets );

@ -85,8 +85,8 @@ public:
KileInfo* info() const { return m_ki;} KileInfo* info() const { return m_ki;}
void readConfig(KConfig *config); void readConfig(TDEConfig *config);
void readKateConfigFlags(KConfig *config); void readKateConfigFlags(TDEConfig *config);
void saveLocalChanges(); void saveLocalChanges();
void setAbbreviationListview(KileAbbrevView *listview); void setAbbreviationListview(KileAbbrevView *listview);

@ -40,7 +40,7 @@
#include "kilelogwidget.h" #include "kilelogwidget.h"
#include "kiletool_enums.h" #include "kiletool_enums.h"
ConfigCodeCompletion::ConfigCodeCompletion(KConfig *config, KileWidget::LogMsg *logwidget, TQWidget *parent, const char *name ) ConfigCodeCompletion::ConfigCodeCompletion(TDEConfig *config, KileWidget::LogMsg *logwidget, TQWidget *parent, const char *name )
: TQWidget(parent,name), m_config(config), m_logwidget(logwidget) : TQWidget(parent,name), m_config(config), m_logwidget(logwidget)
{ {
// Layout // Layout

@ -40,7 +40,7 @@ class ConfigCodeCompletion : public TQWidget
Q_OBJECT Q_OBJECT
public: public:
ConfigCodeCompletion(KConfig *config, KileWidget::LogMsg *logwidget, TQWidget *parent=0, const char *name=0); ConfigCodeCompletion(TDEConfig *config, KileWidget::LogMsg *logwidget, TQWidget *parent=0, const char *name=0);
~ConfigCodeCompletion(); ~ConfigCodeCompletion();
void readConfig(void); void readConfig(void);
@ -49,7 +49,7 @@ public:
private: private:
enum CompletionPage { TexPage=0, DictionaryPage=1, AbbreviationPage=2, NumPages=3 }; enum CompletionPage { TexPage=0, DictionaryPage=1, AbbreviationPage=2, NumPages=3 };
KConfig *m_config; TDEConfig *m_config;
KileWidget::LogMsg *m_logwidget; KileWidget::LogMsg *m_logwidget;
// tabs, views, pages, wordlists // tabs, views, pages, wordlists

@ -293,7 +293,7 @@ void ConfigStructure::clickedAdd()
//////////////////// read/write configuration //////////////////// //////////////////// read/write configuration ////////////////////
void ConfigStructure::readConfig(KConfig *config) void ConfigStructure::readConfig(TDEConfig *config)
{ {
// config section // config section
config->setGroup( "Structure Entries" ); config->setGroup( "Structure Entries" );
@ -323,7 +323,7 @@ void ConfigStructure::readConfig(KConfig *config)
m_structurelevel->setValue(config->readNumEntry("DefaultLevel",3)); m_structurelevel->setValue(config->readNumEntry("DefaultLevel",3));
} }
void ConfigStructure::writeConfig(KConfig *config) void ConfigStructure::writeConfig(TDEConfig *config)
{ {
// config section // config section
config->setGroup( "Structure Entries" ); config->setGroup( "Structure Entries" );

@ -23,7 +23,7 @@
#include <tqstringlist.h> #include <tqstringlist.h>
#include <tqmap.h> #include <tqmap.h>
class KConfig; class TDEConfig;
class TQRect; class TQRect;
class TQPainter; class TQPainter;
@ -70,8 +70,8 @@ public:
ConfigStructure(TQWidget *parent=0, const char *name=0); ConfigStructure(TQWidget *parent=0, const char *name=0);
~ConfigStructure(); ~ConfigStructure();
void readConfig(KConfig *config); void readConfig(TDEConfig *config);
void writeConfig(KConfig *config); void writeConfig(TDEConfig *config);
private: private:
TQStringList m_entries; TQStringList m_entries;

@ -156,7 +156,7 @@ Tester::~Tester()
void Tester::saveResults(const KURL & dest) void Tester::saveResults(const KURL & dest)
{ {
KIO::NetAccess::file_copy(KURL::fromPathOrURL(m_resultsFile), dest, -1, true); TDEIO::NetAccess::file_copy(KURL::fromPathOrURL(m_resultsFile), dest, -1, true);
} }
void Tester::runTests() void Tester::runTests()
@ -223,7 +223,7 @@ void Tester::processTestResults (TDEProcess *proc)
} }
} }
void Tester::processTool(KConfig *config, const TQString &tool) void Tester::processTool(TDEConfig *config, const TQString &tool)
{ {
config->setGroup(tool); config->setGroup(tool);

@ -19,7 +19,7 @@
#include <tqobject.h> #include <tqobject.h>
class KTempDir; class KTempDir;
class KConfig; class TDEConfig;
class TDEProcess; class TDEProcess;
class KURL; class KURL;
@ -85,7 +85,7 @@ signals:
private slots: private slots:
void determineProgress(TDEProcess *, char *, int); void determineProgress(TDEProcess *, char *, int);
void processTestResults (TDEProcess *); void processTestResults (TDEProcess *);
void processTool(KConfig *, const TQString &); void processTool(TDEConfig *, const TQString &);
void addResult(const TQString &tool, const TQValueList<ConfigTest> &tests); void addResult(const TQString &tool, const TQValueList<ConfigTest> &tests);

@ -30,7 +30,7 @@
DocumentationViewer::DocumentationViewer(TQWidget *parent, const char *name ) : KHTMLPart(parent,name, 0, 0, BrowserViewGUI) DocumentationViewer::DocumentationViewer(TQWidget *parent, const char *name ) : KHTMLPart(parent,name, 0, 0, BrowserViewGUI)
{ {
m_hpos = 0; m_hpos = 0;
KConfig konqConfig("konquerorrc"); TDEConfig konqConfig("konquerorrc");
konqConfig.setGroup("HTML Settings"); konqConfig.setGroup("HTML Settings");
//const KHTMLSettings * set = settings(); //const KHTMLSettings * set = settings();
//( const_cast<KHTMLSettings *>(set) )->init( &konqConfig, false ); //( const_cast<KHTMLSettings *>(set) )->init( &konqConfig, false );

@ -28,7 +28,7 @@
namespace KileDialog namespace KileDialog
{ {
FloatEnvironmentDialog::FloatEnvironmentDialog(KConfig *config, KileInfo *ki, TQWidget *parent) FloatEnvironmentDialog::FloatEnvironmentDialog(TDEConfig *config, KileInfo *ki, TQWidget *parent)
: Wizard(config,parent), m_ki(ki) : Wizard(config,parent), m_ki(ki)
{ {
TQWidget *page = new TQWidget(this); TQWidget *page = new TQWidget(this);

@ -35,7 +35,7 @@ class FloatEnvironmentDialog : public Wizard
public: public:
FloatEnvironmentDialog(KConfig *config, KileInfo *ki, TQWidget *parent); FloatEnvironmentDialog(TDEConfig *config, KileInfo *ki, TQWidget *parent);
~FloatEnvironmentDialog() {} ~FloatEnvironmentDialog() {}
public slots: public slots:

@ -117,7 +117,7 @@
<include location="local" impldecl="in declaration">latexcmddialog.h</include> <include location="local" impldecl="in declaration">latexcmddialog.h</include>
</includes> </includes>
<variables> <variables>
<variable access="private">KConfig *m_config;</variable> <variable access="private">TDEConfig *m_config;</variable>
<variable access="private">KileDocument::LatexCommands *m_commands;</variable> <variable access="private">KileDocument::LatexCommands *m_commands;</variable>
</variables> </variables>
<Q_SLOTS> <Q_SLOTS>
@ -125,7 +125,7 @@
</Q_SLOTS> </Q_SLOTS>
<functions> <functions>
<function access="private" specifier="non virtual">init()</function> <function access="private" specifier="non virtual">init()</function>
<function specifier="non virtual">setLatexCommands( KConfig * config, KileDocument::LatexCommands * commands )</function> <function specifier="non virtual">setLatexCommands( TDEConfig * config, KileDocument::LatexCommands * commands )</function>
</functions> </functions>
<layoutdefaults spacing="6" margin="11"/> <layoutdefaults spacing="6" margin="11"/>
<includehints> <includehints>

@ -196,14 +196,14 @@ public slots:
/* config */ /* config */
private: private:
KConfig *m_config; TDEConfig *m_config;
int m_horSplitRight, m_horSplitLeft, m_verSplitTop, m_verSplitBottom; int m_horSplitRight, m_horSplitLeft, m_verSplitTop, m_verSplitBottom;
TQStringList m_recentFilesList, m_listDocsOpenOnStart, m_listProjectsOpenOnStart; TQStringList m_recentFilesList, m_listDocsOpenOnStart, m_listProjectsOpenOnStart;
void setViewerToolBars(); void setViewerToolBars();
signals: signals:
/** /**
* Emit this signal when the configuration is changed. Classes that read and write to the global KConfig object * Emit this signal when the configuration is changed. Classes that read and write to the global TDEConfig object
* should connect to this signal so they can update their settings. * should connect to this signal so they can update their settings.
**/ **/
void configChanged(); void configChanged();

@ -54,7 +54,7 @@
namespace KileDialog namespace KileDialog
{ {
Config::Config(KConfig *config, KileInfo *ki, TQWidget* parent) Config::Config(TDEConfig *config, KileInfo *ki, TQWidget* parent)
: KDialogBase( KDialogBase::TreeList, TQt::WStyle_DialogBorder, : KDialogBase( KDialogBase::TreeList, TQt::WStyle_DialogBorder,
parent, "kileconfiguration", true, i18n("Configure"), Ok|Cancel, Ok ), parent, "kileconfiguration", true, i18n("Configure"), Ok|Cancel, Ok ),
m_config(config), m_config(config),
@ -63,7 +63,7 @@ namespace KileDialog
m_config->sync(); m_config->sync();
// we need a dialog manager // we need a dialog manager
m_manager = new KConfigDialogManager(this,KileConfig::self()); m_manager = new TDEConfigDialogManager(this,KileConfig::self());
setShowIconsInTreeList(true); setShowIconsInTreeList(true);
addConfigFolder(i18n("Kile"),"kile"); addConfigFolder(i18n("Kile"),"kile");
@ -326,7 +326,7 @@ namespace KileDialog
previewPage->writeConfig(); // Quick Preview (dani) previewPage->writeConfig(); // Quick Preview (dani)
m_config->sync(); m_config->sync();
emit okClicked(); // Otherwise, the KConfigXT machine doesn't start... emit okClicked(); // Otherwise, the TDEConfigXT machine doesn't start...
// oder m_manager->updateSettings(); // oder m_manager->updateSettings();
accept(); accept();

@ -30,7 +30,7 @@
#include "symbolviewconfig.h" #include "symbolviewconfig.h"
class TQFrame; class TQFrame;
class KConfig; class TDEConfig;
namespace KileWidget { class ToolConfig; } namespace KileWidget { class ToolConfig; }
class KileWidgetHelpConfig; class KileWidgetHelpConfig;
@ -51,7 +51,7 @@ namespace KileDialog
public: public:
Config( KConfig *config, KileInfo *ki, TQWidget* parent = 0); Config( TDEConfig *config, KileInfo *ki, TQWidget* parent = 0);
~Config(); ~Config();
virtual void show(); virtual void show();
@ -66,9 +66,9 @@ namespace KileDialog
private: private:
// dialog manager // dialog manager
KConfigDialogManager *m_manager; TDEConfigDialogManager *m_manager;
KConfig *m_config; TDEConfig *m_config;
KileInfo *m_ki; KileInfo *m_ki;
bool m_editorSettingsChanged; bool m_editorSettingsChanged;

@ -799,8 +799,8 @@ void Manager::fileSaveAll(bool amAutoSaving, bool disUntitled )
// get the right permissions, start with safe default // get the right permissions, start with safe default
mode_t perms = 0600; mode_t perms = 0600;
KIO::UDSEntry fentry; TDEIO::UDSEntry fentry;
if (KIO::NetAccess::stat (url, fentry, kapp->mainWidget())) if (TDEIO::NetAccess::stat (url, fentry, kapp->mainWidget()))
{ {
KILE_DEBUG () << "stating successful: " << url.prettyURL() << endl; KILE_DEBUG () << "stating successful: " << url.prettyURL() << endl;
KFileItem item (fentry, url); KFileItem item (fentry, url);
@ -809,9 +809,9 @@ void Manager::fileSaveAll(bool amAutoSaving, bool disUntitled )
// first del existing file if any, than copy over the file we have // first del existing file if any, than copy over the file we have
// failure if a: the existing file could not be deleted, b: the file could not be copied // failure if a: the existing file could not be deleted, b: the file could not be copied
if ( (!KIO::NetAccess::exists( backupUrl, false, kapp->mainWidget() ) if ( (!TDEIO::NetAccess::exists( backupUrl, false, kapp->mainWidget() )
|| KIO::NetAccess::del( backupUrl, kapp->mainWidget() ) ) || TDEIO::NetAccess::del( backupUrl, kapp->mainWidget() ) )
&& KIO::NetAccess::file_copy( url, backupUrl, perms, true, false, kapp->mainWidget() ) ) && TDEIO::NetAccess::file_copy( url, backupUrl, perms, true, false, kapp->mainWidget() ) )
{ {
KILE_DEBUG()<<"backing up successful ("<<url.prettyURL()<<" -> "<<backupUrl.prettyURL()<<")"<<endl; KILE_DEBUG()<<"backing up successful ("<<url.prettyURL()<<" -> "<<backupUrl.prettyURL()<<")"<<endl;
} }
@ -932,7 +932,7 @@ void Manager::fileSaveAs(Kate::View* view)
if(info->getType() == KileDocument::LaTeX) { if(info->getType() == KileDocument::LaTeX) {
saveURL = Info::makeValidTeXURL(saveURL, m_ki->extensions()->isTexFile(saveURL), false); // don't check for file existence saveURL = Info::makeValidTeXURL(saveURL, m_ki->extensions()->isTexFile(saveURL), false); // don't check for file existence
} }
if(KIO::NetAccess::exists(saveURL, true, kapp->mainWidget())) // check for writing possibility if(TDEIO::NetAccess::exists(saveURL, true, kapp->mainWidget())) // check for writing possibility
{ {
int r = KMessageBox::warningContinueCancel(m_ki->parentWidget(), i18n("A file with the name \"%1\" exists already. Do you want to overwrite it ?").arg(saveURL.fileName()), i18n("Overwrite File ?"), KGuiItem(i18n("&Overwrite")), TQString()); int r = KMessageBox::warningContinueCancel(m_ki->parentWidget(), i18n("A file with the name \"%1\" exists already. Do you want to overwrite it ?").arg(saveURL.fileName()), i18n("Overwrite File ?"), KGuiItem(i18n("&Overwrite")), TQString());
if(r != KMessageBox::Continue) if(r != KMessageBox::Continue)

@ -112,7 +112,7 @@ KURL Info::repairInvalidCharacters(const KURL& url, bool checkForFileExistence /
KURL Info::renameIfExist(const KURL& url) KURL Info::renameIfExist(const KURL& url)
{ {
KURL ret(url); KURL ret(url);
while ( KIO::NetAccess::exists(url, true, kapp->mainWidget()) ) // check for writing possibility while ( TDEIO::NetAccess::exists(url, true, kapp->mainWidget()) ) // check for writing possibility
{ {
bool isOK; bool isOK;
TQString newURL = KInputDialog::getText( TQString newURL = KInputDialog::getText(

@ -195,7 +195,7 @@ protected:
TQString m_preamble; TQString m_preamble;
TQMap<TQString,KileStructData> m_dictStructLevel; TQMap<TQString,KileStructData> m_dictStructLevel;
KURL m_url; KURL m_url;
KConfig *m_config; TDEConfig *m_config;
bool m_showStructureLabels; bool m_showStructureLabels;
bool m_showStructureBibitems; bool m_showStructureBibitems;
bool m_showStructureGraphics; bool m_showStructureGraphics;

@ -508,7 +508,7 @@ namespace KileJScript {
////////////////////////////// Manager ////////////////////////////// ////////////////////////////// Manager //////////////////////////////
Manager::Manager(KileInfo *kileInfo, KConfig *config, KActionCollection *actionCollection, TQObject *parent, const char *name) : TQObject(parent, name), m_jScriptDirWatch(NULL), m_kileInfo(kileInfo), m_config(config), m_actionCollection(actionCollection) { Manager::Manager(KileInfo *kileInfo, TDEConfig *config, KActionCollection *actionCollection, TQObject *parent, const char *name) : TQObject(parent, name), m_jScriptDirWatch(NULL), m_kileInfo(kileInfo), m_config(config), m_actionCollection(actionCollection) {
// create a local scripts directory if it doesn't exist yet // create a local scripts directory if it doesn't exist yet
m_localJScriptDir = locateLocal("appdata", "scripts/", true); m_localJScriptDir = locateLocal("appdata", "scripts/", true);
m_jScriptDirWatch = new KDirWatch(this, "KileJScript::Manager::JScriptDirWatch"); m_jScriptDirWatch = new KDirWatch(this, "KileJScript::Manager::JScriptDirWatch");

@ -125,7 +125,7 @@ class Manager : public TQObject {
/** /**
* Constructs a new Manager object. * Constructs a new Manager object.
**/ **/
Manager(KileInfo *info, KConfig *config, KActionCollection *actionCollection, TQObject *parent = 0, const char *name = 0); Manager(KileInfo *info, TDEConfig *config, KActionCollection *actionCollection, TQObject *parent = 0, const char *name = 0);
virtual ~Manager(); virtual ~Manager();
/** /**
@ -146,7 +146,7 @@ class Manager : public TQObject {
TQValueList<JScript*> getJScripts(); TQValueList<JScript*> getJScripts();
/** /**
* Writes the key sequence-to-script bindings to the KConfig object that has * Writes the key sequence-to-script bindings to the TDEConfig object that has
* passed in the constructor. * passed in the constructor.
**/ **/
void writeConfig(); void writeConfig();
@ -194,7 +194,7 @@ class Manager : public TQObject {
void scanJScriptDirectories(); void scanJScriptDirectories();
/** /**
* Reads and assigns the key sequence-to-script bindings from the KConfig * Reads and assigns the key sequence-to-script bindings from the TDEConfig
* object that has been passed in the constructor. * object that has been passed in the constructor.
**/ **/
void readConfig(); void readConfig();
@ -206,7 +206,7 @@ class Manager : public TQObject {
KDirWatch *m_jScriptDirWatch; KDirWatch *m_jScriptDirWatch;
KileInfo *m_kileInfo; KileInfo *m_kileInfo;
KConfig *m_config; TDEConfig *m_config;
KActionCollection *m_actionCollection; KActionCollection *m_actionCollection;
/** /**
@ -226,14 +226,14 @@ class Manager : public TQObject {
void deleteJScripts(); void deleteJScripts();
/** /**
* Reads an 'unsigned int' list as value for a specific key from the local KConfig * Reads an 'unsigned int' list as value for a specific key from the local TDEConfig
* object. * object.
* @param key the considered entry key * @param key the considered entry key
**/ **/
TQValueList<unsigned int> readUnsignedIntListEntry(const TQString& key); TQValueList<unsigned int> readUnsignedIntListEntry(const TQString& key);
/** /**
* Writes a key - value pair to the local KConfig object for the case that the * Writes a key - value pair to the local TDEConfig object for the case that the
* value is an 'unsigned int' list. * value is an 'unsigned int' list.
* @param key the considered entry key * @param key the considered entry key
* @param l the 'unsigned int' list that is used as value * @param l the 'unsigned int' list that is used as value
@ -250,7 +250,7 @@ class Manager : public TQObject {
/** /**
* Writes the ID to file name mappings that are currently in use to the local * Writes the ID to file name mappings that are currently in use to the local
* KConfig object. * TDEConfig object.
**/ **/
void writeIDs(); void writeIDs();

@ -304,7 +304,7 @@ void KileProject::readMakeIndexOptions()
TQString grp = KileTool::groupFor("MakeIndex", m_config); TQString grp = KileTool::groupFor("MakeIndex", m_config);
//get the default value //get the default value
KConfig *cfg = TDEGlobal::config(); TDEConfig *cfg = TDEGlobal::config();
cfg->setGroup(KileTool::groupFor("MakeIndex", KileTool::configName("MakeIndex", cfg))); cfg->setGroup(KileTool::groupFor("MakeIndex", KileTool::configName("MakeIndex", cfg)));
TQString deflt = cfg->readEntry("options", "'%S'.idx"); TQString deflt = cfg->readEntry("options", "'%S'.idx");

@ -85,7 +85,7 @@ namespace KileTool
{ {
TQString from_cfg = TDEGlobal::dirs()->findResource("appdata", "kilestdtools.rc"); TQString from_cfg = TDEGlobal::dirs()->findResource("appdata", "kilestdtools.rc");
TQString to_cfg = TDEGlobal::dirs()->saveLocation("config") + "/kilerc"; TQString to_cfg = TDEGlobal::dirs()->saveLocation("config") + "/kilerc";
KConfig *pCfg = new KConfig(from_cfg, false, false); TDEConfig *pCfg = new TDEConfig(from_cfg, false, false);
pCfg->copyTo(to_cfg, m_config); pCfg->copyTo(to_cfg, m_config);
} }

@ -21,7 +21,7 @@
#include "kiletool.h" #include "kiletool.h"
class KConfig; class TDEConfig;
namespace KileTool namespace KileTool
{ {
@ -32,7 +32,7 @@ namespace KileTool
class Factory class Factory
{ {
public: public:
Factory(Manager *mngr, KConfig *config) : m_manager(mngr), m_config(config) {} Factory(Manager *mngr, TDEConfig *config) : m_manager(mngr), m_config(config) {}
~Factory() {} ~Factory() {}
Base* create(const TQString & tool, bool prepare = true); Base* create(const TQString & tool, bool prepare = true);
@ -41,7 +41,7 @@ namespace KileTool
private: private:
Manager *m_manager; Manager *m_manager;
KConfig *m_config; TDEConfig *m_config;
}; };
class LaTeX : public Compile class LaTeX : public Compile

@ -24,7 +24,7 @@
#include <tqdict.h> #include <tqdict.h>
#include <tqstringlist.h> #include <tqstringlist.h>
class KConfig; class TDEConfig;
class KileInfo; class KileInfo;
class KShellProcess; class KShellProcess;
class KileProject; class KileProject;
@ -57,9 +57,9 @@ namespace KileTool
void setInfo(KileInfo *ki) { m_ki = ki; } void setInfo(KileInfo *ki) { m_ki = ki; }
/** /**
* Sets the KConfig object, this is already taken care of by the Manager. * Sets the TDEConfig object, this is already taken care of by the Manager.
**/ **/
void setConfig(KConfig *config) { m_config = config; } void setConfig(TDEConfig *config) { m_config = config; }
/** /**
* @returns the Manager object for this tool. * @returns the Manager object for this tool.
@ -228,7 +228,7 @@ namespace KileTool
private: private:
Manager *m_manager; Manager *m_manager;
KileInfo *m_ki; KileInfo *m_ki;
KConfig *m_config; TDEConfig *m_config;
TQString m_name, m_from, m_to; TQString m_name, m_from, m_to;
TQString m_target, m_basedir, m_relativedir, m_targetdir, m_source, m_S, m_options; TQString m_target, m_basedir, m_relativedir, m_targetdir, m_source, m_S, m_options;

@ -444,7 +444,7 @@ namespace KileWidget
//KILE_DEBUG() << "==ToolConfig::removeTool()=====================" << endl; //KILE_DEBUG() << "==ToolConfig::removeTool()=====================" << endl;
if ( KMessageBox::warningContinueCancel(this, i18n("Are you sure you want to remove the tool %1?").arg(m_current)) == KMessageBox::Continue ) if ( KMessageBox::warningContinueCancel(this, i18n("Are you sure you want to remove the tool %1?").arg(m_current)) == KMessageBox::Continue )
{ {
KConfig *config = m_config; TDEConfig *config = m_config;
TQStringList cfgs = KileTool::configNames(m_current, config); TQStringList cfgs = KileTool::configNames(m_current, config);
for ( uint i = 0; i < cfgs.count(); ++i) for ( uint i = 0; i < cfgs.count(); ++i)
{ {

@ -97,7 +97,7 @@ namespace KileWidget
private: private:
ToolConfigWidget *m_configWidget; ToolConfigWidget *m_configWidget;
KileTool::Manager *m_manager; KileTool::Manager *m_manager;
KConfig *m_config; TDEConfig *m_config;
KileTool::Config m_map; KileTool::Config m_map;
TQGridLayout *m_layout; TQGridLayout *m_layout;
TQString m_current, m_icon; TQString m_current, m_icon;

@ -101,7 +101,7 @@ namespace KileTool
} }
} }
Manager::Manager(KileInfo *ki, KConfig *config, KileWidget::LogMsg *log, KileWidget::Output *output, KParts::PartManager *manager, TQWidgetStack *stack, KAction *stop, uint to) : Manager::Manager(KileInfo *ki, TDEConfig *config, KileWidget::LogMsg *log, KileWidget::Output *output, KParts::PartManager *manager, TQWidgetStack *stack, KAction *stop, uint to) :
m_ki(ki), m_ki(ki),
m_config(config), m_config(config),
m_log(log), m_log(log),
@ -301,7 +301,7 @@ namespace KileTool
KileProject *project = m_ki->docManager()->activeProject(); KileProject *project = m_ki->docManager()->activeProject();
if (project) if (project)
{ {
TQString cfg = configName(name, dynamic_cast<KConfig*>(project->config())); TQString cfg = configName(name, dynamic_cast<TDEConfig*>(project->config()));
if ( cfg.length() > 0 ) return groupFor(name, cfg); if ( cfg.length() > 0 ) return groupFor(name, cfg);
} }
} }
@ -327,7 +327,7 @@ namespace KileTool
KileProject *project = m_ki->docManager()->activeProject(); KileProject *project = m_ki->docManager()->activeProject();
if ( useproject && project) if ( useproject && project)
{ {
KConfig *prjcfg = dynamic_cast<KConfig*>(project->config()); TDEConfig *prjcfg = dynamic_cast<TDEConfig*>(project->config());
if ( prjcfg ) if ( prjcfg )
{ {
TQString grp = groupFor(name, prjcfg); TQString grp = groupFor(name, prjcfg);
@ -384,7 +384,7 @@ namespace KileTool
emit(requestGUIState(state)); emit(requestGUIState(state));
} }
TQStringList toolList(KConfig *config, bool menuOnly) TQStringList toolList(TDEConfig *config, bool menuOnly)
{ {
KILE_DEBUG() << "==KileTool::toolList()==================" << endl; KILE_DEBUG() << "==KileTool::toolList()==================" << endl;
@ -409,20 +409,20 @@ namespace KileTool
return tools; return tools;
} }
TQString configName(const TQString & tool, KConfig *config) TQString configName(const TQString & tool, TDEConfig *config)
{ {
config->setGroup("Tools"); config->setGroup("Tools");
return config->readEntry(tool, ""); return config->readEntry(tool, "");
} }
void setConfigName(const TQString & tool, const TQString & name, KConfig *config) void setConfigName(const TQString & tool, const TQString & name, TDEConfig *config)
{ {
KILE_DEBUG() << "==KileTool::Manager::setConfigName(" << tool << "," << name << ")===============" << endl; KILE_DEBUG() << "==KileTool::Manager::setConfigName(" << tool << "," << name << ")===============" << endl;
config->setGroup("Tools"); config->setGroup("Tools");
config->writeEntry(tool, name); config->writeEntry(tool, name);
} }
TQString groupFor(const TQString &tool, KConfig *config) TQString groupFor(const TQString &tool, TDEConfig *config)
{ {
return groupFor(tool, configName(tool, config)); return groupFor(tool, configName(tool, config));
} }
@ -456,7 +456,7 @@ namespace KileTool
return tool; return tool;
} }
TQStringList configNames(const TQString &tool, KConfig *config) TQStringList configNames(const TQString &tool, TDEConfig *config)
{ {
TQStringList groups = config->groupList(), configs; TQStringList groups = config->groupList(), configs;
TQRegExp re = TQRegExp("Tool/"+ tool +"/(.+)"); TQRegExp re = TQRegExp("Tool/"+ tool +"/(.+)");
@ -472,19 +472,19 @@ namespace KileTool
return configs; return configs;
} }
TQString menuFor(const TQString &tool, KConfig *config) TQString menuFor(const TQString &tool, TDEConfig *config)
{ {
config->setGroup("ToolsGUI"); config->setGroup("ToolsGUI");
return config->readEntry(tool, "Other,gear").section(',',0,0); return config->readEntry(tool, "Other,gear").section(',',0,0);
} }
TQString iconFor(const TQString &tool, KConfig *config) TQString iconFor(const TQString &tool, TDEConfig *config)
{ {
config->setGroup("ToolsGUI"); config->setGroup("ToolsGUI");
return config->readEntry(tool, "Other,gear").section(',',1,1); return config->readEntry(tool, "Other,gear").section(',',1,1);
} }
void setGUIOptions(const TQString &tool, const TQString &menu, const TQString &icon, KConfig *config) void setGUIOptions(const TQString &tool, const TQString &menu, const TQString &icon, TDEConfig *config)
{ {
TQString entry = menu + ',' + icon; TQString entry = menu + ',' + icon;

@ -25,7 +25,7 @@
class TQTimer; class TQTimer;
class TQWidgetStack; class TQWidgetStack;
class KConfig; class TDEConfig;
class KTextEdit; class KTextEdit;
class KAction; class KAction;
namespace KParts { class PartManager; } namespace KParts { class PartManager; }
@ -69,7 +69,7 @@ namespace KileTool
public: public:
Manager(KileInfo *ki, KConfig *config, KileWidget::LogMsg *log, KileWidget::Output *output, KParts::PartManager *, TQWidgetStack *, KAction *, uint to); Manager(KileInfo *ki, TDEConfig *config, KileWidget::LogMsg *log, KileWidget::Output *output, KParts::PartManager *, TQWidgetStack *, KAction *, uint to);
~Manager(); ~Manager();
public: public:
@ -85,7 +85,7 @@ namespace KileTool
TQWidgetStack * widgetStack() { return m_stack; } TQWidgetStack * widgetStack() { return m_stack; }
KileInfo * info() { return m_ki; } KileInfo * info() { return m_ki; }
KConfig * config() { return m_config; } TDEConfig * config() { return m_config; }
void setFactory(Factory* fac) { m_factory = fac; } void setFactory(Factory* fac) { m_factory = fac; }
Factory* factory() { return m_factory; } Factory* factory() { return m_factory; }
@ -123,7 +123,7 @@ namespace KileTool
private: private:
KileInfo *m_ki; KileInfo *m_ki;
KConfig *m_config; TDEConfig *m_config;
KileWidget::LogMsg *m_log; KileWidget::LogMsg *m_log;
KileWidget::Output *m_output; KileWidget::Output *m_output;
KParts::PartManager *m_pm; KParts::PartManager *m_pm;
@ -137,24 +137,24 @@ namespace KileTool
uint m_nTimeout; uint m_nTimeout;
}; };
TQStringList toolList(KConfig *config, bool menuOnly = false); TQStringList toolList(TDEConfig *config, bool menuOnly = false);
TQStringList configNames(const TQString &tool, KConfig *config); TQStringList configNames(const TQString &tool, TDEConfig *config);
TQString configName(const TQString & tool, KConfig *); TQString configName(const TQString & tool, TDEConfig *);
void setConfigName(const TQString & tool, const TQString & name, KConfig *); void setConfigName(const TQString & tool, const TQString & name, TDEConfig *);
TQString groupFor(const TQString & tool, KConfig *); TQString groupFor(const TQString & tool, TDEConfig *);
TQString groupFor(const TQString & tool, const TQString & cfg = "Default" ); TQString groupFor(const TQString & tool, const TQString & cfg = "Default" );
void extract(const TQString &str, TQString &tool, TQString &cfg); void extract(const TQString &str, TQString &tool, TQString &cfg);
TQString format(const TQString & tool, const TQString &cfg); TQString format(const TQString & tool, const TQString &cfg);
TQString menuFor(const TQString &tool, KConfig *config); TQString menuFor(const TQString &tool, TDEConfig *config);
TQString iconFor(const TQString &tool, KConfig *config); TQString iconFor(const TQString &tool, TDEConfig *config);
TQString categoryFor(const TQString &clss); TQString categoryFor(const TQString &clss);
void setGUIOptions(const TQString &tool, const TQString &menu, const TQString &icon, KConfig *config); void setGUIOptions(const TQString &tool, const TQString &menu, const TQString &icon, TDEConfig *config);
} }
#endif #endif

@ -17,7 +17,7 @@
namespace KileDialog namespace KileDialog
{ {
Wizard::Wizard(KConfig *config, TQWidget *parent, const char *name, const TQString &caption) : Wizard::Wizard(TDEConfig *config, TQWidget *parent, const char *name, const TQString &caption) :
KDialogBase(parent,name,true,caption,KDialogBase::Ok | KDialogBase::Cancel, KDialogBase::Ok, true), KDialogBase(parent,name,true,caption,KDialogBase::Ok | KDialogBase::Cancel, KDialogBase::Ok, true),
m_td(TQString(), TQString(), TQString(), 0, 0, TQString()), m_td(TQString(), TQString(), TQString(), 0, 0, TQString()),
m_config(config) m_config(config)

@ -20,14 +20,14 @@
#include "kileactions.h" #include "kileactions.h"
class KConfig; class TDEConfig;
namespace KileDialog namespace KileDialog
{ {
class Wizard : public KDialogBase class Wizard : public KDialogBase
{ {
public: public:
Wizard(KConfig *, TQWidget *parent=0, const char *name=0, const TQString &caption = TQString()); Wizard(TDEConfig *, TQWidget *parent=0, const char *name=0, const TQString &caption = TQString());
~Wizard(); ~Wizard();
public: public:
@ -35,7 +35,7 @@ namespace KileDialog
protected: protected:
KileAction::TagData m_td; KileAction::TagData m_td;
KConfig *m_config; TDEConfig *m_config;
}; };
} }

@ -26,7 +26,7 @@ namespace KileDocument
// BEGIN LatexCommands // BEGIN LatexCommands
LatexCommands::LatexCommands(KConfig *config, KileInfo *info) : m_config(config), m_ki(info) LatexCommands::LatexCommands(TDEConfig *config, KileInfo *info) : m_config(config), m_ki(info)
{ {
m_envGroupName = "Latex Environments"; m_envGroupName = "Latex Environments";
m_cmdGroupName = "Latex Commands"; m_cmdGroupName = "Latex Commands";

@ -61,7 +61,7 @@ class LatexCommands : public TQObject
public: public:
LatexCommands(KConfig *config, KileInfo *info); LatexCommands(TDEConfig *config, KileInfo *info);
~LatexCommands() {}; ~LatexCommands() {};
TQString envGroupName() { return m_envGroupName; } TQString envGroupName() { return m_envGroupName; }
@ -92,7 +92,7 @@ public:
private: private:
KConfig *m_config; TDEConfig *m_config;
KileInfo *m_ki; KileInfo *m_ki;
TQString m_envGroupName, m_cmdGroupName; TQString m_envGroupName, m_cmdGroupName;

@ -300,7 +300,7 @@ void NewLatexCommand::slotOk()
//BEGIN LatexCommandsDialog //BEGIN LatexCommandsDialog
LatexCommandsDialog::LatexCommandsDialog(KConfig *config, KileDocument::LatexCommands *commands, TQWidget *parent, const char *name) LatexCommandsDialog::LatexCommandsDialog(TDEConfig *config, KileDocument::LatexCommands *commands, TQWidget *parent, const char *name)
: KDialogBase( parent,name, true, i18n("LaTeX Configuration"), Ok | Cancel | Help, Ok, true ), : KDialogBase( parent,name, true, i18n("LaTeX Configuration"), Ok | Cancel | Help, Ok, true ),
m_config(config), m_commands(commands) m_config(config), m_commands(commands)
{ {

@ -72,7 +72,7 @@ class LatexCommandsDialog : public KDialogBase
public: public:
LatexCommandsDialog(KConfig *config, KileDocument::LatexCommands *commands, TQWidget *parent=0, const char *name=0); LatexCommandsDialog(TDEConfig *config, KileDocument::LatexCommands *commands, TQWidget *parent=0, const char *name=0);
~LatexCommandsDialog() {} ~LatexCommandsDialog() {}
//enum EnvParameter { envName,envStarred,envEOL,envMath,envTab,envOption }; //enum EnvParameter { envName,envStarred,envEOL,envMath,envTab,envOption };
@ -80,7 +80,7 @@ public:
private: private:
enum LVmode { lvEnvMode=1, lvCmdMode=2 }; enum LVmode { lvEnvMode=1, lvCmdMode=2 };
KConfig *m_config; TDEConfig *m_config;
KileDocument::LatexCommands *m_commands; KileDocument::LatexCommands *m_commands;
TQMap<TQString,bool> m_dictCommands; TQMap<TQString,bool> m_dictCommands;
bool m_commandChanged; bool m_commandChanged;

@ -239,7 +239,7 @@
<include location="local" impldecl="in implementation">latexconfigwidget.ui.h</include> <include location="local" impldecl="in implementation">latexconfigwidget.ui.h</include>
</includes> </includes>
<variables> <variables>
<variable access="private">KConfig *m_config;</variable> <variable access="private">TDEConfig *m_config;</variable>
<variable access="private">KileDocument::LatexCommands *m_commands;</variable> <variable access="private">KileDocument::LatexCommands *m_commands;</variable>
</variables> </variables>
<Q_SLOTS> <Q_SLOTS>
@ -247,7 +247,7 @@
</Q_SLOTS> </Q_SLOTS>
<functions> <functions>
<function access="private" specifier="non virtual">init()</function> <function access="private" specifier="non virtual">init()</function>
<function specifier="non virtual">setLatexCommands( KConfig * config, KileDocument::LatexCommands * commands )</function> <function specifier="non virtual">setLatexCommands( TDEConfig * config, KileDocument::LatexCommands * commands )</function>
</functions> </functions>
<layoutdefaults spacing="6" margin="11"/> <layoutdefaults spacing="6" margin="11"/>
<includehints> <includehints>

@ -37,7 +37,7 @@ void KileWidgetLatexConfig::slotConfigure()
} }
void KileWidgetLatexConfig::setLatexCommands( KConfig *config, KileDocument::LatexCommands *commands ) void KileWidgetLatexConfig::setLatexCommands( TDEConfig *config, KileDocument::LatexCommands *commands )
{ {
m_config = config; m_config = config;
m_commands = commands; m_commands = commands;

@ -83,7 +83,7 @@ int main( int argc, char ** argv )
aboutData.addAuthor("Brachet Pascal",0,""); aboutData.addAuthor("Brachet Pascal",0,"");
aboutData.addCredit("Thomas Braun", I18N_NOOP("Lots of bug fixes!")); aboutData.addCredit("Thomas Braun", I18N_NOOP("Lots of bug fixes!"));
aboutData.addCredit("Simon Martin", I18N_NOOP("KConfig XT, various improvements and bugfixing")); aboutData.addCredit("Simon Martin", I18N_NOOP("TDEConfig XT, various improvements and bugfixing"));
aboutData.addCredit("Roland Schulz", I18N_NOOP("KatePart integration")); aboutData.addCredit("Roland Schulz", I18N_NOOP("KatePart integration"));
aboutData.addCredit("Thorsten Lück", I18N_NOOP("Log Parsing")); aboutData.addCredit("Thorsten Lück", I18N_NOOP("Log Parsing"));
aboutData.addCredit("Jan-Marek Glogowski", I18N_NOOP("Find in Files dialog")); aboutData.addCredit("Jan-Marek Glogowski", I18N_NOOP("Find in Files dialog"));

@ -209,12 +209,12 @@ void ManageTemplatesDialog::addTemplate() {
return; return;
} }
if (!KIO::NetAccess::exists(iconURL, true, kapp->mainWidget())) { if (!TDEIO::NetAccess::exists(iconURL, true, kapp->mainWidget())) {
KMessageBox::error(this, i18n("Sorry, but the icon file: %1\ndoes not seem to exist. Please choose a new icon.").arg(icon)); KMessageBox::error(this, i18n("Sorry, but the icon file: %1\ndoes not seem to exist. Please choose a new icon.").arg(icon));
return; return;
} }
if (!KIO::NetAccess::exists(m_sourceURL, true, kapp->mainWidget())) { if (!TDEIO::NetAccess::exists(m_sourceURL, true, kapp->mainWidget())) {
KMessageBox::error(this, i18n("Sorry, but the file: %1\ndoes not seem to exist. Maybe you forgot to save the file?").arg(m_sourceURL.prettyURL())); KMessageBox::error(this, i18n("Sorry, but the file: %1\ndoes not seem to exist. Maybe you forgot to save the file?").arg(m_sourceURL.prettyURL()));
return; return;
} }
@ -261,7 +261,7 @@ bool ManageTemplatesDialog::removeTemplate()
KileTemplate::Info templateInfo = templateItem->getTemplateInfo(); KileTemplate::Info templateInfo = templateItem->getTemplateInfo();
if (!(KIO::NetAccess::exists(KURL::fromPathOrURL(templateInfo.path), false, kapp->mainWidget()) && (KIO::NetAccess::exists(KURL::fromPathOrURL(templateInfo.icon), false, kapp->mainWidget()) || !TQFileInfo(templateInfo.icon).exists()))) { if (!(TDEIO::NetAccess::exists(KURL::fromPathOrURL(templateInfo.path), false, kapp->mainWidget()) && (TDEIO::NetAccess::exists(KURL::fromPathOrURL(templateInfo.icon), false, kapp->mainWidget()) || !TQFileInfo(templateInfo.icon).exists()))) {
KMessageBox::error(this, i18n("Sorry, but you do not have the necessary permissions to remove the selected template.")); KMessageBox::error(this, i18n("Sorry, but you do not have the necessary permissions to remove the selected template."));
return false; return false;
} }

@ -31,7 +31,7 @@
namespace KileDialog namespace KileDialog
{ {
MathEnvironmentDialog::MathEnvironmentDialog(TQWidget *parent, KConfig *config, KileInfo *ki, KileDocument::LatexCommands *commands) MathEnvironmentDialog::MathEnvironmentDialog(TQWidget *parent, TDEConfig *config, KileInfo *ki, KileDocument::LatexCommands *commands)
: Wizard(config,parent), m_ki(ki), m_latexCommands(commands) : Wizard(config,parent), m_ki(ki), m_latexCommands(commands)
{ {
TQWidget *page = new TQWidget(this); TQWidget *page = new TQWidget(this);

@ -42,7 +42,7 @@ class MathEnvironmentDialog : public Wizard
public: public:
MathEnvironmentDialog(TQWidget *parent, KConfig *config, KileInfo *ki, KileDocument::LatexCommands *commands); MathEnvironmentDialog(TQWidget *parent, TDEConfig *config, KileInfo *ki, KileDocument::LatexCommands *commands);
~MathEnvironmentDialog() {} ~MathEnvironmentDialog() {}
public slots: public slots:

@ -50,7 +50,7 @@ protected slots:
protected: protected:
KileTemplate::Manager *m_templateManager; KileTemplate::Manager *m_templateManager;
KConfig *m_config; TDEConfig *m_config;
NewDocumentWidget* m_newDocumentWidget; NewDocumentWidget* m_newDocumentWidget;
int m_currentlyDisplayedType; // not a document type, only a local type! int m_currentlyDisplayedType; // not a document type, only a local type!

@ -28,7 +28,7 @@
#include "kileconfig.h" #include "kileconfig.h"
KileWidgetPreviewConfig::KileWidgetPreviewConfig(KConfig *config, KileTool::QuickPreview *preview, TQWidget *parent, const char *name ) KileWidgetPreviewConfig::KileWidgetPreviewConfig(TDEConfig *config, KileTool::QuickPreview *preview, TQWidget *parent, const char *name )
: TQWidget(parent,name), : TQWidget(parent,name),
m_config(config), m_config(config),
m_preview(preview) m_preview(preview)

@ -35,14 +35,14 @@ class KileWidgetPreviewConfig : public TQWidget
Q_OBJECT Q_OBJECT
public: public:
KileWidgetPreviewConfig(KConfig *config, KileTool::QuickPreview *preview, TQWidget *parent=0, const char *name=0); KileWidgetPreviewConfig(TDEConfig *config, KileTool::QuickPreview *preview, TQWidget *parent=0, const char *name=0);
~KileWidgetPreviewConfig() {} ~KileWidgetPreviewConfig() {}
void readConfig(void); void readConfig(void);
void writeConfig(void); void writeConfig(void);
private: private:
KConfig *m_config; TDEConfig *m_config;
KComboBox *m_combobox; KComboBox *m_combobox;
KileTool::QuickPreview *m_preview; KileTool::QuickPreview *m_preview;
KLineEdit *m_leDvipngResolution; KLineEdit *m_leDvipngResolution;

@ -129,7 +129,7 @@ void EditableCheckListItem::paintCell( TQPainter *p, const TQColorGroup &cg,
//////////////////// QuickDocument class //////////////////// //////////////////// QuickDocument class ////////////////////
QuickDocument::QuickDocument(KConfig *config, TQWidget *parent, const char *name, const TQString &caption) : Wizard(config, parent,name,caption) QuickDocument::QuickDocument(TDEConfig *config, TQWidget *parent, const char *name, const TQString &caption) : Wizard(config, parent,name,caption)
{ {
KILE_DEBUG() << "==QuickDocument::setupGUI()============" << endl; KILE_DEBUG() << "==QuickDocument::setupGUI()============" << endl;
TQTabWidget *tabWidget = new TQTabWidget( this ); TQTabWidget *tabWidget = new TQTabWidget( this );

@ -49,7 +49,7 @@ class QuickDocument : public Wizard
public: public:
QuickDocument(KConfig *, TQWidget *parent=0, const char *name=0, const TQString &caption = TQString()); QuickDocument(TDEConfig *, TQWidget *parent=0, const char *name=0, const TQString &caption = TQString());
~QuickDocument(); ~QuickDocument();
bool isStandardClass(const TQString &classname); bool isStandardClass(const TQString &classname);

@ -260,7 +260,7 @@ void SymbolView::fillWidget(const TQString& prefix)
if( prefix == MFUSprefix) if( prefix == MFUSprefix)
{ {
KConfig *config = TDEGlobal::config(); TDEConfig *config = TDEGlobal::config();
config->setGroup(MFUSGroup); config->setGroup(MFUSGroup);
TQString configPaths = config->readEntry("paths"); TQString configPaths = config->readEntry("paths");
TQString configrefCnts = config->readEntry("counts"); TQString configrefCnts = config->readEntry("counts");
@ -302,7 +302,7 @@ void SymbolView::writeConfig()
TQStringList paths,refCnts; TQStringList paths,refCnts;
KConfig *config = TDEGlobal::config(); TDEConfig *config = TDEGlobal::config();
config->setGroup(MFUSGroup); config->setGroup(MFUSGroup);
if( KileConfig::clearMFUS() ) if( KileConfig::clearMFUS() )

@ -27,7 +27,7 @@
namespace KileDialog namespace KileDialog
{ {
QuickTabbing::QuickTabbing(KConfig *config, KileInfo *ki, TQWidget *parent, const char *name, const TQString &caption ) : Wizard(config, parent,name, caption), m_ki(ki) QuickTabbing::QuickTabbing(TDEConfig *config, KileInfo *ki, TQWidget *parent, const char *name, const TQString &caption ) : Wizard(config, parent,name, caption), m_ki(ki)
{ {
TQWidget *page = new TQWidget(this); TQWidget *page = new TQWidget(this);
setMainWidget(page); setMainWidget(page);

@ -37,7 +37,7 @@ namespace KileDialog
public: public:
QuickTabbing(KConfig *config, KileInfo *ki, TQWidget *parent=0, const char *name=0, const TQString &caption = TQString()); QuickTabbing(TDEConfig *config, KileInfo *ki, TQWidget *parent=0, const char *name=0, const TQString &caption = TQString());
~QuickTabbing(); ~QuickTabbing();
public slots: public slots:

@ -1832,7 +1832,7 @@ TabularCell::Count TabularTable::countCells(int x1,int y1,int x2,int y2)
//BEGIN TabularDialog //BEGIN TabularDialog
TabularDialog::TabularDialog(TQWidget *parent, KConfig *config, KileDocument::LatexCommands *commands, bool tabularenv) TabularDialog::TabularDialog(TQWidget *parent, TDEConfig *config, KileDocument::LatexCommands *commands, bool tabularenv)
: Wizard(config,parent), m_latexCommands(commands) : Wizard(config,parent), m_latexCommands(commands)
{ {
TQWidget *page = new TQWidget(this); TQWidget *page = new TQWidget(this);

@ -260,7 +260,7 @@ class TabularDialog : public Wizard
public: public:
TabularDialog(TQWidget *parent, KConfig *config, KileDocument::LatexCommands *commands, bool tabularenv= true); TabularDialog(TQWidget *parent, TDEConfig *config, KileDocument::LatexCommands *commands, bool tabularenv= true);
~TabularDialog() {} ~TabularDialog() {}
TQStringList columnAlignments(); TQStringList columnAlignments();

@ -73,7 +73,7 @@ bool Manager::copyAppData(const KURL& src, const TQString& subdir, const TQStrin
//if a directory is found //if a directory is found
if (!dir.isNull()) { if (!dir.isNull()) {
return KIO::NetAccess::copy(src, targetURL, kapp->mainWidget()); return TDEIO::NetAccess::copy(src, targetURL, kapp->mainWidget());
} }
else { else {
KMessageBox::error(0, i18n("Could not find a folder to save %1 to.\nCheck whether you have a .kde folder with write permissions in your home folder.").arg(fileName)); KMessageBox::error(0, i18n("Could not find a folder to save %1 to.\nCheck whether you have a .kde folder with write permissions in your home folder.").arg(fileName));
@ -84,7 +84,7 @@ bool Manager::copyAppData(const KURL& src, const TQString& subdir, const TQStrin
bool Manager::removeAppData(const TQString &file) { bool Manager::removeAppData(const TQString &file) {
TQFileInfo fileInfo(file); TQFileInfo fileInfo(file);
if(fileInfo.exists()) { if(fileInfo.exists()) {
return KIO::NetAccess::del(KURL::fromPathOrURL(file), kapp->mainWidget()); return TDEIO::NetAccess::del(KURL::fromPathOrURL(file), kapp->mainWidget());
} }
return true; return true;
} }
@ -123,29 +123,29 @@ bool Manager::replace(const KileTemplate::Info& toBeReplaced, const KURL& newTem
//start by copying the files that belong to the new template to a safe place //start by copying the files that belong to the new template to a safe place
TQString templateTempFile, iconTempFile; TQString templateTempFile, iconTempFile;
if(!KIO::NetAccess::download(newTemplateSourceURL, templateTempFile, kapp->mainWidget())) { if(!TDEIO::NetAccess::download(newTemplateSourceURL, templateTempFile, kapp->mainWidget())) {
return false; return false;
} }
if(!KIO::NetAccess::download(newIcon, iconTempFile, kapp->mainWidget())) { if(!TDEIO::NetAccess::download(newIcon, iconTempFile, kapp->mainWidget())) {
KIO::NetAccess::removeTempFile(templateTempFile); TDEIO::NetAccess::removeTempFile(templateTempFile);
return false; return false;
} }
//now delete the template that should be replaced //now delete the template that should be replaced
if(!remove(toBeReplaced)) { if(!remove(toBeReplaced)) {
KIO::NetAccess::removeTempFile(templateTempFile); TDEIO::NetAccess::removeTempFile(templateTempFile);
KIO::NetAccess::removeTempFile(iconTempFile); TDEIO::NetAccess::removeTempFile(iconTempFile);
} }
//finally, create the new template //finally, create the new template
if(!add(KURL::fromPathOrURL(templateTempFile), type, newName, KURL::fromPathOrURL(iconTempFile))) { if(!add(KURL::fromPathOrURL(templateTempFile), type, newName, KURL::fromPathOrURL(iconTempFile))) {
KIO::NetAccess::removeTempFile(templateTempFile); TDEIO::NetAccess::removeTempFile(templateTempFile);
KIO::NetAccess::removeTempFile(iconTempFile); TDEIO::NetAccess::removeTempFile(iconTempFile);
return false; return false;
} }
KIO::NetAccess::removeTempFile(templateTempFile); TDEIO::NetAccess::removeTempFile(templateTempFile);
KIO::NetAccess::removeTempFile(iconTempFile); TDEIO::NetAccess::removeTempFile(iconTempFile);
return true; return true;
} }

@ -54,7 +54,7 @@ void UserHelp::readConfig()
TQStringList menu,files; TQStringList menu,files;
// first read all entries // first read all entries
KConfig *config = m_manager->config(); TDEConfig *config = m_manager->config();
config->setGroup("UserHelp"); config->setGroup("UserHelp");
int entries = config->readNumEntry("entries"); int entries = config->readNumEntry("entries");
for ( int i=0; i<entries; ++i ) for ( int i=0; i<entries; ++i )
@ -76,7 +76,7 @@ void UserHelp::writeConfig()
int entries = m_menuentries.count(); int entries = m_menuentries.count();
// first delete old entries // first delete old entries
KConfig *config = m_manager->config(); TDEConfig *config = m_manager->config();
config->deleteGroup("UserHelp"); config->deleteGroup("UserHelp");
// then write new entries // then write new entries
@ -272,7 +272,7 @@ void UserHelp::slotUserHelpActivated(int index)
type = "ViewHTML"; type = "ViewHTML";
} }
KConfig *config = m_manager->config(); TDEConfig *config = m_manager->config();
if ( type!=TQString() && config->hasGroup("Tool/" + type + '/' + cfg) ) if ( type!=TQString() && config->hasGroup("Tool/" + type + '/' + cfg) )
{ {
KileTool::View *tool = new KileTool::View(type, m_manager, false); KileTool::View *tool = new KileTool::View(type, m_manager, false);

@ -1710,7 +1710,7 @@ msgid "Lots of bug fixes!"
msgstr "" msgstr ""
#: main.cpp:86 #: main.cpp:86
msgid "KConfig XT, various improvements and bugfixing" msgid "TDEConfig XT, various improvements and bugfixing"
msgstr "" msgstr ""
#: main.cpp:87 #: main.cpp:87

@ -1825,8 +1825,8 @@ msgid "Lots of bug fixes!"
msgstr "Много намерени грешки!" msgstr "Много намерени грешки!"
#: main.cpp:86 #: main.cpp:86
msgid "KConfig XT, various improvements and bugfixing" msgid "TDEConfig XT, various improvements and bugfixing"
msgstr "KConfig XT, различни подобрения и коригиране на грешки" msgstr "TDEConfig XT, различни подобрения и коригиране на грешки"
#: main.cpp:87 #: main.cpp:87
msgid "KatePart integration" msgid "KatePart integration"

@ -1721,7 +1721,7 @@ msgid "Lots of bug fixes!"
msgstr "" msgstr ""
#: main.cpp:86 #: main.cpp:86
msgid "KConfig XT, various improvements and bugfixing" msgid "TDEConfig XT, various improvements and bugfixing"
msgstr "" msgstr ""
#: main.cpp:87 #: main.cpp:87

@ -1886,8 +1886,8 @@ msgid "Lots of bug fixes!"
msgstr "Molts errors corregits!" msgstr "Molts errors corregits!"
#: main.cpp:86 #: main.cpp:86
msgid "KConfig XT, various improvements and bugfixing" msgid "TDEConfig XT, various improvements and bugfixing"
msgstr "Extensió KConfig, diverses millores i correcció d'errors" msgstr "Extensió TDEConfig, diverses millores i correcció d'errors"
#: main.cpp:87 #: main.cpp:87
msgid "KatePart integration" msgid "KatePart integration"

@ -1849,7 +1849,7 @@ msgid "Lots of bug fixes!"
msgstr "" msgstr ""
#: main.cpp:86 #: main.cpp:86
msgid "KConfig XT, various improvements and bugfixing" msgid "TDEConfig XT, various improvements and bugfixing"
msgstr "" msgstr ""
#: main.cpp:87 #: main.cpp:87

@ -1761,7 +1761,7 @@ msgid "Lots of bug fixes!"
msgstr "" msgstr ""
#: main.cpp:86 #: main.cpp:86
msgid "KConfig XT, various improvements and bugfixing" msgid "TDEConfig XT, various improvements and bugfixing"
msgstr "" msgstr ""
#: main.cpp:87 #: main.cpp:87

@ -1844,8 +1844,8 @@ msgid "Lots of bug fixes!"
msgstr "Masser af fejlrettelser." msgstr "Masser af fejlrettelser."
#: main.cpp:86 #: main.cpp:86
msgid "KConfig XT, various improvements and bugfixing" msgid "TDEConfig XT, various improvements and bugfixing"
msgstr "KConfig XT, forskellige forbedringer og fejlrettelser" msgstr "TDEConfig XT, forskellige forbedringer og fejlrettelser"
#: main.cpp:87 #: main.cpp:87
msgid "KatePart integration" msgid "KatePart integration"

@ -1861,8 +1861,8 @@ msgid "Lots of bug fixes!"
msgstr "Viele Fehlerkorrekturen!" msgstr "Viele Fehlerkorrekturen!"
#: main.cpp:86 #: main.cpp:86
msgid "KConfig XT, various improvements and bugfixing" msgid "TDEConfig XT, various improvements and bugfixing"
msgstr "KConfig XT, verschiedene Verbesserungen und Fehlerbehebung" msgstr "TDEConfig XT, verschiedene Verbesserungen und Fehlerbehebung"
#: main.cpp:87 #: main.cpp:87
msgid "KatePart integration" msgid "KatePart integration"

@ -1868,8 +1868,8 @@ msgid "Lots of bug fixes!"
msgstr "Πολλές διορθώσεις σφαλμάτων!" msgstr "Πολλές διορθώσεις σφαλμάτων!"
#: main.cpp:86 #: main.cpp:86
msgid "KConfig XT, various improvements and bugfixing" msgid "TDEConfig XT, various improvements and bugfixing"
msgstr "KConfig XT, διάφορες βελτιώσεις και διόρθωση σφαλμάτων" msgstr "TDEConfig XT, διάφορες βελτιώσεις και διόρθωση σφαλμάτων"
#: main.cpp:87 #: main.cpp:87
msgid "KatePart integration" msgid "KatePart integration"

@ -1856,8 +1856,8 @@ msgid "Lots of bug fixes!"
msgstr "Lots of bug fixes!" msgstr "Lots of bug fixes!"
#: main.cpp:86 #: main.cpp:86
msgid "KConfig XT, various improvements and bugfixing" msgid "TDEConfig XT, various improvements and bugfixing"
msgstr "KConfig XT, various improvements and bugfixing" msgstr "TDEConfig XT, various improvements and bugfixing"
#: main.cpp:87 #: main.cpp:87
msgid "KatePart integration" msgid "KatePart integration"

@ -1870,8 +1870,8 @@ msgid "Lots of bug fixes!"
msgstr "¡Muchas correccioens de fallos!" msgstr "¡Muchas correccioens de fallos!"
#: main.cpp:86 #: main.cpp:86
msgid "KConfig XT, various improvements and bugfixing" msgid "TDEConfig XT, various improvements and bugfixing"
msgstr "KConfig XT, varias mejoras y eliminación de errores" msgstr "TDEConfig XT, varias mejoras y eliminación de errores"
#: main.cpp:87 #: main.cpp:87
msgid "KatePart integration" msgid "KatePart integration"

@ -1830,8 +1830,8 @@ msgid "Lots of bug fixes!"
msgstr "Hulk veaparandusi!" msgstr "Hulk veaparandusi!"
#: main.cpp:86 #: main.cpp:86
msgid "KConfig XT, various improvements and bugfixing" msgid "TDEConfig XT, various improvements and bugfixing"
msgstr "KConfig XT, mitmesugused parandused" msgstr "TDEConfig XT, mitmesugused parandused"
#: main.cpp:87 #: main.cpp:87
msgid "KatePart integration" msgid "KatePart integration"

@ -1873,7 +1873,7 @@ msgid "Lots of bug fixes!"
msgstr "" msgstr ""
#: main.cpp:86 #: main.cpp:86
msgid "KConfig XT, various improvements and bugfixing" msgid "TDEConfig XT, various improvements and bugfixing"
msgstr "" msgstr ""
#: main.cpp:87 #: main.cpp:87
@ -8262,7 +8262,7 @@ msgstr "Beste Aukerak"
#~ msgstr "Bibliografia" #~ msgstr "Bibliografia"
#, fuzzy #, fuzzy
#~ msgid "KConfig XT configuration system" #~ msgid "TDEConfig XT configuration system"
#~ msgstr "Tresnen Konfigurazioa" #~ msgstr "Tresnen Konfigurazioa"
#, fuzzy #, fuzzy

@ -1899,8 +1899,8 @@ msgid "Lots of bug fixes!"
msgstr "" msgstr ""
#: main.cpp:86 #: main.cpp:86
msgid "KConfig XT, various improvements and bugfixing" msgid "TDEConfig XT, various improvements and bugfixing"
msgstr "KConfig XT, parannuksia ja korjauksia" msgstr "TDEConfig XT, parannuksia ja korjauksia"
#: main.cpp:87 #: main.cpp:87
msgid "KatePart integration" msgid "KatePart integration"

@ -1897,8 +1897,8 @@ msgid "Lots of bug fixes!"
msgstr "Beaucoup de correction de bogues !" msgstr "Beaucoup de correction de bogues !"
#: main.cpp:86 #: main.cpp:86
msgid "KConfig XT, various improvements and bugfixing" msgid "TDEConfig XT, various improvements and bugfixing"
msgstr "KConfig XT, nombreuses améliorations et résolutions de bugs" msgstr "TDEConfig XT, nombreuses améliorations et résolutions de bugs"
#: main.cpp:87 #: main.cpp:87
msgid "KatePart integration" msgid "KatePart integration"

@ -1747,8 +1747,8 @@ msgid "Lots of bug fixes!"
msgstr "Go leor ceartúchán!" msgstr "Go leor ceartúchán!"
#: main.cpp:86 #: main.cpp:86
msgid "KConfig XT, various improvements and bugfixing" msgid "TDEConfig XT, various improvements and bugfixing"
msgstr "KConfig XT, feabhsúcháin éagsúla agus ceartúcháin" msgstr "TDEConfig XT, feabhsúcháin éagsúla agus ceartúcháin"
#: main.cpp:87 #: main.cpp:87
msgid "KatePart integration" msgid "KatePart integration"

@ -1855,8 +1855,8 @@ msgid "Lots of bug fixes!"
msgstr "Moreas de correizóns de erros!" msgstr "Moreas de correizóns de erros!"
#: main.cpp:86 #: main.cpp:86
msgid "KConfig XT, various improvements and bugfixing" msgid "TDEConfig XT, various improvements and bugfixing"
msgstr "KConfig XT, varias melloras e correizón de erros" msgstr "TDEConfig XT, varias melloras e correizón de erros"
#: main.cpp:87 #: main.cpp:87
msgid "KatePart integration" msgid "KatePart integration"

@ -1826,7 +1826,7 @@ msgid "Lots of bug fixes!"
msgstr "" msgstr ""
#: main.cpp:86 #: main.cpp:86
msgid "KConfig XT, various improvements and bugfixing" msgid "TDEConfig XT, various improvements and bugfixing"
msgstr "के-कॉन्फ़िग एक्सटी, विविध सुधार तथा बग-फ़िक्सिंग" msgstr "के-कॉन्फ़िग एक्सटी, विविध सुधार तथा बग-फ़िक्सिंग"
#: main.cpp:87 #: main.cpp:87

@ -1923,7 +1923,7 @@ msgid "Lots of bug fixes!"
msgstr "" msgstr ""
#: main.cpp:86 #: main.cpp:86
msgid "KConfig XT, various improvements and bugfixing" msgid "TDEConfig XT, various improvements and bugfixing"
msgstr "" msgstr ""
#: main.cpp:87 #: main.cpp:87

@ -1704,7 +1704,7 @@ msgid "Lots of bug fixes!"
msgstr "" msgstr ""
#: main.cpp:86 #: main.cpp:86
msgid "KConfig XT, various improvements and bugfixing" msgid "TDEConfig XT, various improvements and bugfixing"
msgstr "" msgstr ""
#: main.cpp:87 #: main.cpp:87

@ -1848,8 +1848,8 @@ msgid "Lots of bug fixes!"
msgstr "Un sacco di correzioni!" msgstr "Un sacco di correzioni!"
#: main.cpp:86 #: main.cpp:86
msgid "KConfig XT, various improvements and bugfixing" msgid "TDEConfig XT, various improvements and bugfixing"
msgstr "KConfig XT, miglioramenti vari e correzione di errori" msgstr "TDEConfig XT, miglioramenti vari e correzione di errori"
#: main.cpp:87 #: main.cpp:87
msgid "KatePart integration" msgid "KatePart integration"
@ -8662,8 +8662,8 @@ msgstr "Opzioni &MakeIndex"
#~ msgid "\\textsc - Small caps" #~ msgid "\\textsc - Small caps"
#~ msgstr "\\textsc - Maiuscoletto" #~ msgstr "\\textsc - Maiuscoletto"
#~ msgid "KConfig XT configuration system" #~ msgid "TDEConfig XT configuration system"
#~ msgstr "sistema di configurazione KConfig XT" #~ msgstr "sistema di configurazione TDEConfig XT"
#~ msgid "Whether to show the tips on startup." #~ msgid "Whether to show the tips on startup."
#~ msgstr "Se mostrare i suggerimenti all'avvio." #~ msgstr "Se mostrare i suggerimenti all'avvio."

@ -1774,8 +1774,8 @@ msgid "Lots of bug fixes!"
msgstr "多くのバグ修正" msgstr "多くのバグ修正"
#: main.cpp:86 #: main.cpp:86
msgid "KConfig XT, various improvements and bugfixing" msgid "TDEConfig XT, various improvements and bugfixing"
msgstr "KConfig XT, さまざまな改良とバグ修正" msgstr "TDEConfig XT, さまざまな改良とバグ修正"
#: main.cpp:87 #: main.cpp:87
msgid "KatePart integration" msgid "KatePart integration"

@ -1753,8 +1753,8 @@ msgid "Lots of bug fixes!"
msgstr "" msgstr ""
#: main.cpp:86 #: main.cpp:86
msgid "KConfig XT, various improvements and bugfixing" msgid "TDEConfig XT, various improvements and bugfixing"
msgstr "KConfig XT, įvairūs patobulinimai ir ydų taisymas" msgstr "TDEConfig XT, įvairūs patobulinimai ir ydų taisymas"
#: main.cpp:87 #: main.cpp:87
msgid "KatePart integration" msgid "KatePart integration"

@ -1927,7 +1927,7 @@ msgid "Lots of bug fixes!"
msgstr "" msgstr ""
#: main.cpp:86 #: main.cpp:86
msgid "KConfig XT, various improvements and bugfixing" msgid "TDEConfig XT, various improvements and bugfixing"
msgstr "" msgstr ""
#: main.cpp:87 #: main.cpp:87

@ -1746,7 +1746,7 @@ msgid "Lots of bug fixes!"
msgstr "" msgstr ""
#: main.cpp:86 #: main.cpp:86
msgid "KConfig XT, various improvements and bugfixing" msgid "TDEConfig XT, various improvements and bugfixing"
msgstr "" msgstr ""
#: main.cpp:87 #: main.cpp:87
@ -7691,7 +7691,7 @@ msgstr ""
#~ msgstr "\\textit - Cursiva" #~ msgstr "\\textit - Cursiva"
#, fuzzy #, fuzzy
#~ msgid "KConfig XT configuration system" #~ msgid "TDEConfig XT configuration system"
#~ msgstr "Neuer Satz von Einrichtungen" #~ msgstr "Neuer Satz von Einrichtungen"
#~ msgid "Refresh project tree..." #~ msgid "Refresh project tree..."

@ -1896,7 +1896,7 @@ msgid "Lots of bug fixes!"
msgstr "" msgstr ""
#: main.cpp:86 #: main.cpp:86
msgid "KConfig XT, various improvements and bugfixing" msgid "TDEConfig XT, various improvements and bugfixing"
msgstr "" msgstr ""
#: main.cpp:87 #: main.cpp:87

@ -1845,8 +1845,8 @@ msgid "Lots of bug fixes!"
msgstr "En Barg Fehlerrichten!" msgstr "En Barg Fehlerrichten!"
#: main.cpp:86 #: main.cpp:86
msgid "KConfig XT, various improvements and bugfixing" msgid "TDEConfig XT, various improvements and bugfixing"
msgstr "KConfig XT, en Reeg Verbetern un Richten vun Fehlers" msgstr "TDEConfig XT, en Reeg Verbetern un Richten vun Fehlers"
#: main.cpp:87 #: main.cpp:87
msgid "KatePart integration" msgid "KatePart integration"

@ -1866,8 +1866,8 @@ msgid "Lots of bug fixes!"
msgstr "Zeer veel bugreparaties!" msgstr "Zeer veel bugreparaties!"
#: main.cpp:86 #: main.cpp:86
msgid "KConfig XT, various improvements and bugfixing" msgid "TDEConfig XT, various improvements and bugfixing"
msgstr "KConfig XT, diverse verbeteringen en bugreparaties" msgstr "TDEConfig XT, diverse verbeteringen en bugreparaties"
#: main.cpp:87 #: main.cpp:87
msgid "KatePart integration" msgid "KatePart integration"

@ -1840,8 +1840,8 @@ msgid "Lots of bug fixes!"
msgstr "Mange feilfiksar." msgstr "Mange feilfiksar."
#: main.cpp:86 #: main.cpp:86
msgid "KConfig XT, various improvements and bugfixing" msgid "TDEConfig XT, various improvements and bugfixing"
msgstr "KConfig XT, ymse forbetringar og feilfiksar." msgstr "TDEConfig XT, ymse forbetringar og feilfiksar."
#: main.cpp:87 #: main.cpp:87
msgid "KatePart integration" msgid "KatePart integration"

@ -1759,7 +1759,7 @@ msgid "Lots of bug fixes!"
msgstr "" msgstr ""
#: main.cpp:86 #: main.cpp:86
msgid "KConfig XT, various improvements and bugfixing" msgid "TDEConfig XT, various improvements and bugfixing"
msgstr "" msgstr ""
#: main.cpp:87 #: main.cpp:87

@ -1900,7 +1900,7 @@ msgid "Lots of bug fixes!"
msgstr "" msgstr ""
#: main.cpp:86 #: main.cpp:86
msgid "KConfig XT, various improvements and bugfixing" msgid "TDEConfig XT, various improvements and bugfixing"
msgstr "" msgstr ""
#: main.cpp:87 #: main.cpp:87

@ -26,7 +26,7 @@ msgstr ""
"X-POFile-SpellExtra: floats ableofcontents center of flushright extbf\n" "X-POFile-SpellExtra: floats ableofcontents center of flushright extbf\n"
"X-POFile-SpellExtra: caption MakeIndex QuickBuild Kile leqno fleqn exttt\n" "X-POFile-SpellExtra: caption MakeIndex QuickBuild Kile leqno fleqn exttt\n"
"X-POFile-SpellExtra: Níve es X X BibTeX LaTe Kate KTextEditor Ima\n" "X-POFile-SpellExtra: Níve es X X BibTeX LaTe Kate KTextEditor Ima\n"
"X-POFile-SpellExtra: SHIFT CTRL abrev FIXME KatePart XT ViewBib KConfig BD\n" "X-POFile-SpellExtra: SHIFT CTRL abrev FIXME KatePart XT ViewBib TDEConfig BD\n"
"X-POFile-IgnoreConsistency: Entries\n" "X-POFile-IgnoreConsistency: Entries\n"
"X-POFile-IgnoreConsistency: &Archive\n" "X-POFile-IgnoreConsistency: &Archive\n"
"X-POFile-IgnoreConsistency: &Up\n" "X-POFile-IgnoreConsistency: &Up\n"
@ -1882,8 +1882,8 @@ msgid "Lots of bug fixes!"
msgstr "Bastantes correcções de erros!" msgstr "Bastantes correcções de erros!"
#: main.cpp:86 #: main.cpp:86
msgid "KConfig XT, various improvements and bugfixing" msgid "TDEConfig XT, various improvements and bugfixing"
msgstr "KConfig XT, várias melhorias e correcção de erros" msgstr "TDEConfig XT, várias melhorias e correcção de erros"
#: main.cpp:87 #: main.cpp:87
msgid "KatePart integration" msgid "KatePart integration"

@ -1925,8 +1925,8 @@ msgid "Lots of bug fixes!"
msgstr "" msgstr ""
#: main.cpp:86 #: main.cpp:86
msgid "KConfig XT, various improvements and bugfixing" msgid "TDEConfig XT, various improvements and bugfixing"
msgstr "KConfig XT, várias melhorias e correção de bugs" msgstr "TDEConfig XT, várias melhorias e correção de bugs"
#: main.cpp:87 #: main.cpp:87
msgid "KatePart integration" msgid "KatePart integration"

@ -1732,7 +1732,7 @@ msgid "Lots of bug fixes!"
msgstr "" msgstr ""
#: main.cpp:86 #: main.cpp:86
msgid "KConfig XT, various improvements and bugfixing" msgid "TDEConfig XT, various improvements and bugfixing"
msgstr "" msgstr ""
#: main.cpp:87 #: main.cpp:87

@ -1820,8 +1820,8 @@ msgid "Lots of bug fixes!"
msgstr "" msgstr ""
#: main.cpp:86 #: main.cpp:86
msgid "KConfig XT, various improvements and bugfixing" msgid "TDEConfig XT, various improvements and bugfixing"
msgstr "KConfig XT, различные улучшения и исправления ошибок" msgstr "TDEConfig XT, различные улучшения и исправления ошибок"
#: main.cpp:87 #: main.cpp:87
msgid "KatePart integration" msgid "KatePart integration"

@ -2054,7 +2054,7 @@ msgstr ""
#: main.cpp:86 #: main.cpp:86
#, fuzzy #, fuzzy
msgid "KConfig XT, various improvements and bugfixing" msgid "TDEConfig XT, various improvements and bugfixing"
msgstr ", na " msgstr ", na "
#: main.cpp:87 #: main.cpp:87

@ -1872,7 +1872,7 @@ msgid "Lots of bug fixes!"
msgstr "" msgstr ""
#: main.cpp:86 #: main.cpp:86
msgid "KConfig XT, various improvements and bugfixing" msgid "TDEConfig XT, various improvements and bugfixing"
msgstr "" msgstr ""
#: main.cpp:87 #: main.cpp:87
@ -8250,7 +8250,7 @@ msgstr "Ďalšie možnosti"
#~ msgstr "Literatúra" #~ msgstr "Literatúra"
#, fuzzy #, fuzzy
#~ msgid "KConfig XT configuration system" #~ msgid "TDEConfig XT configuration system"
#~ msgstr "Konfigurácia nástrojov" #~ msgstr "Konfigurácia nástrojov"
#, fuzzy #, fuzzy

@ -1805,8 +1805,8 @@ msgid "Lots of bug fixes!"
msgstr "Пуно сређених грешака!" msgstr "Пуно сређених грешака!"
#: main.cpp:86 #: main.cpp:86
msgid "KConfig XT, various improvements and bugfixing" msgid "TDEConfig XT, various improvements and bugfixing"
msgstr "KConfig XT, разна побољшања и исправке грешака" msgstr "TDEConfig XT, разна побољшања и исправке грешака"
#: main.cpp:87 #: main.cpp:87
msgid "KatePart integration" msgid "KatePart integration"

@ -1893,8 +1893,8 @@ msgid "Lots of bug fixes!"
msgstr "" msgstr ""
#: main.cpp:86 #: main.cpp:86
msgid "KConfig XT, various improvements and bugfixing" msgid "TDEConfig XT, various improvements and bugfixing"
msgstr "KConfig XT, razna poboljšanja i ispravke grešaka" msgstr "TDEConfig XT, razna poboljšanja i ispravke grešaka"
#: main.cpp:87 #: main.cpp:87
msgid "KatePart integration" msgid "KatePart integration"

@ -1831,7 +1831,7 @@ msgid "Lots of bug fixes!"
msgstr "Massor med felrättningar." msgstr "Massor med felrättningar."
#: main.cpp:86 #: main.cpp:86
msgid "KConfig XT, various improvements and bugfixing" msgid "TDEConfig XT, various improvements and bugfixing"
msgstr "Kconfig XT, diverse förbättringar och felrättning" msgstr "Kconfig XT, diverse förbättringar och felrättning"
#: main.cpp:87 #: main.cpp:87

@ -1919,8 +1919,8 @@ msgid "Lots of bug fixes!"
msgstr "" msgstr ""
#: main.cpp:86 #: main.cpp:86
msgid "KConfig XT, various improvements and bugfixing" msgid "TDEConfig XT, various improvements and bugfixing"
msgstr "KConfig XT, பலவித முன்னேற்றங்களும் பிழை நீக்குதலும்" msgstr "TDEConfig XT, பலவித முன்னேற்றங்களும் பிழை நீக்குதலும்"
#: main.cpp:87 #: main.cpp:87
msgid "KatePart integration" msgid "KatePart integration"

@ -1802,7 +1802,7 @@ msgid "Lots of bug fixes!"
msgstr "" msgstr ""
#: main.cpp:86 #: main.cpp:86
msgid "KConfig XT, various improvements and bugfixing" msgid "TDEConfig XT, various improvements and bugfixing"
msgstr "" msgstr ""
#: main.cpp:87 #: main.cpp:87

@ -1849,8 +1849,8 @@ msgid "Lots of bug fixes!"
msgstr "Birçok hata düzeltildi!" msgstr "Birçok hata düzeltildi!"
#: main.cpp:86 #: main.cpp:86
msgid "KConfig XT, various improvements and bugfixing" msgid "TDEConfig XT, various improvements and bugfixing"
msgstr "KConfig XT, çeşitli geliştirmeler ve hata düzeltimi" msgstr "TDEConfig XT, çeşitli geliştirmeler ve hata düzeltimi"
#: main.cpp:87 #: main.cpp:87
msgid "KatePart integration" msgid "KatePart integration"

@ -1848,8 +1848,8 @@ msgid "Lots of bug fixes!"
msgstr "Багато виправлень помилок!" msgstr "Багато виправлень помилок!"
#: main.cpp:86 #: main.cpp:86
msgid "KConfig XT, various improvements and bugfixing" msgid "TDEConfig XT, various improvements and bugfixing"
msgstr "KConfig XT, різні покращення та виправлення помилок" msgstr "TDEConfig XT, різні покращення та виправлення помилок"
#: main.cpp:87 #: main.cpp:87
msgid "KatePart integration" msgid "KatePart integration"

@ -1759,8 +1759,8 @@ msgid "Lots of bug fixes!"
msgstr "大量的除错!" msgstr "大量的除错!"
#: main.cpp:86 #: main.cpp:86
msgid "KConfig XT, various improvements and bugfixing" msgid "TDEConfig XT, various improvements and bugfixing"
msgstr "KConfig 工作以及各种改进和修正" msgstr "TDEConfig 工作以及各种改进和修正"
#: main.cpp:87 #: main.cpp:87
msgid "KatePart integration" msgid "KatePart integration"

Loading…
Cancel
Save