summaryrefslogtreecommitdiffstats
path: root/umbrello/umbrello/autolayout
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-25 00:37:49 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-25 00:37:49 -0600
commitf8069e2ea048f2657cc417d83820576ec55c181b (patch)
treecbc5bf540866934a91e0f33b260fc7a25e191fad /umbrello/umbrello/autolayout
parente6aaa3624cc6179b82a9bfff1760e742a669064c (diff)
downloadtdesdk-f8069e2ea048f2657cc417d83820576ec55c181b.tar.gz
tdesdk-f8069e2ea048f2657cc417d83820576ec55c181b.zip
Rename KCModule, KConfig, KIO, KServer, and KSocket to avoid conflicts with KDE4
Diffstat (limited to 'umbrello/umbrello/autolayout')
-rw-r--r--umbrello/umbrello/autolayout/autolayoutdlg.cpp6
-rw-r--r--umbrello/umbrello/autolayout/autolayoutdlg.h8
2 files changed, 7 insertions, 7 deletions
diff --git a/umbrello/umbrello/autolayout/autolayoutdlg.cpp b/umbrello/umbrello/autolayout/autolayoutdlg.cpp
index fb76d4f8..9cb96f18 100644
--- a/umbrello/umbrello/autolayout/autolayoutdlg.cpp
+++ b/umbrello/umbrello/autolayout/autolayoutdlg.cpp
@@ -20,7 +20,7 @@
#include <kdebug.h>
-AutolayoutDlg::AutolayoutDlg(KConfig* c,UMLView* v,TQWidget *parent, const char *name)
+AutolayoutDlg::AutolayoutDlg(TDEConfig* c,UMLView* v,TQWidget *parent, const char *name)
:MyDialog1(parent, name)
{
view=v;
@@ -122,7 +122,7 @@ void AutolayoutDlg::slotDoAutolayout()
accept();
}
-void AutolayoutDlg::readConfig( KConfig * conf)
+void AutolayoutDlg::readConfig( TDEConfig * conf)
{
conf->setGroup("AutolayoutDlg");
associationEdgesCB->setChecked((bool)(conf->readBoolEntry( "associationAsEdges",false)));
@@ -138,7 +138,7 @@ void AutolayoutDlg::readConfig( KConfig * conf)
algorithmCOB->setCurrentItem((int)(conf->readNumEntry( "algorithm",0)));
}
-void AutolayoutDlg::writeConfig( KConfig * conf)
+void AutolayoutDlg::writeConfig( TDEConfig * conf)
{
// conf=kapp->config();
conf->setGroup("AutolayoutDlg");
diff --git a/umbrello/umbrello/autolayout/autolayoutdlg.h b/umbrello/umbrello/autolayout/autolayoutdlg.h
index 35f75231..d970c521 100644
--- a/umbrello/umbrello/autolayout/autolayoutdlg.h
+++ b/umbrello/umbrello/autolayout/autolayoutdlg.h
@@ -23,7 +23,7 @@ class AutolayoutDlg : public MyDialog1
Q_OBJECT
public:
- AutolayoutDlg(KConfig* c,UMLView* v, TQWidget *parent = 0, const char *name = 0);
+ AutolayoutDlg(TDEConfig* c,UMLView* v, TQWidget *parent = 0, const char *name = 0);
public slots:
virtual void slotSetAssociationWeight(int i);
virtual void slotSetDependenciesWeight(int i);
@@ -38,8 +38,8 @@ class AutolayoutDlg : public MyDialog1
virtual void slotReloadSettings();
virtual void slotSaveSettings();
virtual void slotDoAutolayout();
- void readConfig(KConfig*);
- void writeConfig(KConfig*);
+ void readConfig(TDEConfig*);
+ void writeConfig(TDEConfig*);
virtual void slotSelectAlgorithm(const TQString&);
@@ -55,7 +55,7 @@ class AutolayoutDlg : public MyDialog1
bool centerDiagram;
bool clusterizeHierarchies;
int shapeSeparation;
- KConfig* config;
+ TDEConfig* config;
TQString algname;
Autolayout::Autolayouter* getAutolayouter();