diff options
author | Timothy Pearson <[email protected]> | 2011-12-19 11:40:06 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2011-12-19 11:40:06 -0600 |
commit | 4b8539cfb272ae5cf2c4ab7a39d99ee7c328ba43 (patch) | |
tree | 024a4aac501bb28c35f6c185f57cc136b522a1fd /src | |
parent | ba88338b6720eaf71a79e09bc0c9dc0df76cad5d (diff) | |
download | kvkbd-4b8539cfb272ae5cf2c4ab7a39d99ee7c328ba43.tar.gz kvkbd-4b8539cfb272ae5cf2c4ab7a39d99ee7c328ba43.zip |
Remove additional unneeded tq method conversions
Diffstat (limited to 'src')
-rw-r--r-- | src/MainWidget.cpp | 2 | ||||
-rw-r--r-- | src/VButton.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/MainWidget.cpp b/src/MainWidget.cpp index 0005cc2..c338671 100644 --- a/src/MainWidget.cpp +++ b/src/MainWidget.cpp @@ -609,7 +609,7 @@ void MainWidget::hideEvent ( TQHideEvent * ) KConfig *cfg = 0; cfg = KApplication::kApplication()->config(); if (cfg){ - cfg->writeEntry("geometry",tqgeometry()); + cfg->writeEntry("geometry",geometry()); cfg->sync(); } } diff --git a/src/VButton.cpp b/src/VButton.cpp index b46ce28..92a54f0 100644 --- a/src/VButton.cpp +++ b/src/VButton.cpp @@ -87,7 +87,7 @@ void VButton::reposition(int width, int height) } void VButton::res() { - orig_size=tqgeometry(); + orig_size=geometry(); } void VButton::mousePressEvent(TQMouseEvent * e) |