From: Pino Toscano Date: Sat, 4 Jun 2005 20:44:16 +0000 (+0000) Subject: * some improveents to the Plot Dialog X-Git-Tag: v3.80.2~300^2~123 X-Git-Url: https://git.rmz.fi/?a=commitdiff_plain;h=49643a11280e24b4bab0e9928874ad222c6258e8;p=libqmvoc.git * some improveents to the Plot Dialog * PSE::getRadius(...) => PSE::radius(...) * use the 'gear' icon for the Units page on Settings svn path=/trunk/KDE/kdeedu/kalzium/src/element.cpp; revision=422235 --- diff --git a/kalzium/src/element.cpp b/kalzium/src/element.cpp index 26fa55a..422534b 100644 --- a/kalzium/src/element.cpp +++ b/kalzium/src/element.cpp @@ -506,7 +506,7 @@ void Element::setRadius( RADIUSTYPE type, double value, const QString& name ) } } -double Element::getRadius( RADIUSTYPE type ) +double Element::radius( RADIUSTYPE type ) { switch ( type ) { diff --git a/kalzium/src/element.h b/kalzium/src/element.h index 9513a88..c3da100 100644 --- a/kalzium/src/element.h +++ b/kalzium/src/element.h @@ -110,11 +110,6 @@ class Element{ */ void setRadius( RADIUSTYPE type, double value, const QString& name = 0 ); - /** - * @return the value of the radius of the type @p type - */ - double getRadius( RADIUSTYPE type ); - void setDate( int date ) { m_date = date; } void setBiologicalMeaning( int value ) { m_biological = value; } void setAggregation( int value ) { m_az = value; }