summaryrefslogtreecommitdiffstats
path: root/src/svnfrontend/svnlogdlgimp.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-18 18:15:16 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-18 18:15:16 -0600
commitd6609da6b8c963fc19b622ab37f38e65df4e0a29 (patch)
tree66b2ac7b12897c16ac5226da82c451c04994f9cd /src/svnfrontend/svnlogdlgimp.cpp
parent548395e018d377eaa8fede0fba271da8b6c49fc9 (diff)
downloadtdesvn-d6609da6b8c963fc19b622ab37f38e65df4e0a29.tar.gz
tdesvn-d6609da6b8c963fc19b622ab37f38e65df4e0a29.zip
Rename old tq methods that no longer need a unique name
Diffstat (limited to 'src/svnfrontend/svnlogdlgimp.cpp')
-rw-r--r--src/svnfrontend/svnlogdlgimp.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/svnfrontend/svnlogdlgimp.cpp b/src/svnfrontend/svnlogdlgimp.cpp
index a81ce18..4d45190 100644
--- a/src/svnfrontend/svnlogdlgimp.cpp
+++ b/src/svnfrontend/svnlogdlgimp.cpp
@@ -444,9 +444,9 @@ void SvnLogDlgImp::saveSize()
TQRect desk = TQApplication::desktop()->screenGeometry(scnum);
KConfigGroupSaver cs(Kdesvnsettings::self()->config(), groupName);
TQSize sizeToSave = size();
- Kdesvnsettings::self()->config()->writeEntry( TQString::tqfromLatin1("Width %1").tqarg( desk.width()),
+ Kdesvnsettings::self()->config()->writeEntry( TQString::fromLatin1("Width %1").tqarg( desk.width()),
TQString::number( sizeToSave.width()), true, false);
- Kdesvnsettings::self()->config()->writeEntry( TQString::tqfromLatin1("Height %1").tqarg( desk.height()),
+ Kdesvnsettings::self()->config()->writeEntry( TQString::fromLatin1("Height %1").tqarg( desk.height()),
TQString::number( sizeToSave.height()), true, false);
}
@@ -455,11 +455,11 @@ TQSize SvnLogDlgImp::dialogSize()
int w, h;
int scnum = TQApplication::desktop()->screenNumber(parentWidget());
TQRect desk = TQApplication::desktop()->screenGeometry(scnum);
- w = tqsizeHint().width();
- h = tqsizeHint().height();
+ w = sizeHint().width();
+ h = sizeHint().height();
KConfigGroupSaver cs(Kdesvnsettings::self()->config(), groupName);
- w = Kdesvnsettings::self()->config()->readNumEntry( TQString::tqfromLatin1("Width %1").tqarg( desk.width()), w );
- h = Kdesvnsettings::self()->config()->readNumEntry( TQString::tqfromLatin1("Height %1").tqarg( desk.height()), h );
+ w = Kdesvnsettings::self()->config()->readNumEntry( TQString::fromLatin1("Width %1").tqarg( desk.width()), w );
+ h = Kdesvnsettings::self()->config()->readNumEntry( TQString::fromLatin1("Height %1").tqarg( desk.height()), h );
return( TQSize( w, h ) );
}