summaryrefslogtreecommitdiffstats
path: root/lib/kopalette/kopalette.cc
diff options
context:
space:
mode:
authorTimothy Pearson <[email protected]>2013-01-24 13:23:24 -0600
committerTimothy Pearson <[email protected]>2013-01-24 13:23:24 -0600
commit5b8ab149469c8e186ee8b05d90c0103ae722dd85 (patch)
treefb31321c80b12ee8e2237bdcf8c228fe44e67772 /lib/kopalette/kopalette.cc
parentfe33d391dd7c9da0f83e779344a17e2e445b70a8 (diff)
downloadkoffice-5b8ab149469c8e186ee8b05d90c0103ae722dd85.tar.gz
koffice-5b8ab149469c8e186ee8b05d90c0103ae722dd85.zip
Rename KGlobal, KProcess, and KClipboard to avoid conflicts with KDE4
Diffstat (limited to 'lib/kopalette/kopalette.cc')
-rw-r--r--lib/kopalette/kopalette.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/kopalette/kopalette.cc b/lib/kopalette/kopalette.cc
index 751074b7..430b972a 100644
--- a/lib/kopalette/kopalette.cc
+++ b/lib/kopalette/kopalette.cc
@@ -63,11 +63,11 @@ KoPalette::KoPalette(TQWidget * parent, const char * name)
void KoPalette::resetFont()
{
- KConfig * cfg = KGlobal::config();
+ KConfig * cfg = TDEGlobal::config();
Q_ASSERT(cfg);
cfg->setGroup("");
- m_font = KGlobalSettings::generalFont();
- float ps = TQMIN(9, KGlobalSettings::generalFont().pointSize() * 0.8);
+ m_font = TDEGlobalSettings::generalFont();
+ float ps = TQMIN(9, TDEGlobalSettings::generalFont().pointSize() * 0.8);
ps = cfg->readNumEntry("palettefontsize", (int)ps);
if (ps < 6) ps = 6;
m_font.setPointSize((int)ps);