diff options
| author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-19 11:38:41 -0600 |
|---|---|---|
| committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-19 11:38:41 -0600 |
| commit | f0de9e167e289ab7dc33e57f077c1f04ec7c68c8 (patch) | |
| tree | 1fc538e179833e62caec21956bfe47a252be5a72 /kspread/kspread_propertyEditor.cpp | |
| parent | 11191ef0b9908604d1d7aaca382b011ef22c454c (diff) | |
| download | koffice-f0de9e167e289ab7dc33e57f077c1f04ec7c68c8.tar.gz koffice-f0de9e167e289ab7dc33e57f077c1f04ec7c68c8.zip | |
Remove additional unneeded tq method conversions
Diffstat (limited to 'kspread/kspread_propertyEditor.cpp')
| -rw-r--r-- | kspread/kspread_propertyEditor.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kspread/kspread_propertyEditor.cpp b/kspread/kspread_propertyEditor.cpp index 6f38c25e3..3b84a3db3 100644 --- a/kspread/kspread_propertyEditor.cpp +++ b/kspread/kspread_propertyEditor.cpp @@ -280,7 +280,7 @@ KCommand * PropertyEditor::getCommand() TQPtrListIterator<EmbeddedObject> it( m_objects ); for ( ; it.current(); ++it ) { - KoRect oldRect = it.current()->tqgeometry()/*getRect()*/; + KoRect oldRect = it.current()->geometry()/*getRect()*/; KoRect newRect = oldRect; if ( change & GeneralProperty::Left ) @@ -446,7 +446,7 @@ GeneralProperty::GeneralValue PropertyEditor::getGeneralValue() generalValue.m_protect = protect ? STATE_ON : STATE_OFF; keepRatio = it.current()->isKeepRatio(); generalValue.m_keepRatio = keepRatio ? STATE_ON : STATE_OFF; - generalValue.m_rect = it.current()->tqgeometry()/*getRect()*/; + generalValue.m_rect = it.current()->geometry()/*getRect()*/; ++it; } |
