summaryrefslogtreecommitdiffstats
path: root/karbon/shapes/vsinus.cc
diff options
context:
space:
mode:
Diffstat (limited to 'karbon/shapes/vsinus.cc')
-rw-r--r--karbon/shapes/vsinus.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/karbon/shapes/vsinus.cc b/karbon/shapes/vsinus.cc
index 6c546135d..362ed800d 100644
--- a/karbon/shapes/vsinus.cc
+++ b/karbon/shapes/vsinus.cc
@@ -28,14 +28,14 @@
#include <tqdom.h>
#include <vdocument.h>
-VSinus::VSinus( VObject* tqparent, VState state )
- : VPath( tqparent, state )
+VSinus::VSinus( VObject* parent, VState state )
+ : VPath( parent, state )
{
}
-VSinus::VSinus( VObject* tqparent,
+VSinus::VSinus( VObject* parent,
const KoPoint& topLeft, double width, double height, uint periods )
- : VPath( tqparent ), m_topLeft( topLeft ), m_width( width), m_height( height ), m_periods( periods )
+ : VPath( parent ), m_topLeft( topLeft ), m_width( width), m_height( height ), m_periods( periods )
{
// We want at least 1 period:
if( m_periods < 1 )