Some namespace cleanup.

This commit is contained in:
Jim Evins
2016-03-27 00:14:38 -04:00
parent 5b7e031c52
commit 7559544b06
156 changed files with 9732 additions and 10126 deletions
+4 -4
View File
@@ -40,7 +40,7 @@ namespace
///
/// Outline Constructor
///
glabels::Outline::Outline( LabelModelObject* owner )
Outline::Outline( LabelModelObject* owner )
: mOwner(owner)
{
mDashes << dashSize << dashSize;
@@ -63,7 +63,7 @@ glabels::Outline::Outline( LabelModelObject* owner )
///
/// Outline Destructor
///
glabels::Outline::~Outline()
Outline::~Outline()
{
}
@@ -71,7 +71,7 @@ glabels::Outline::~Outline()
///
/// Draw Outline
///
void glabels::Outline::draw( QPainter* painter ) const
void Outline::draw( QPainter* painter ) const
{
painter->save();
@@ -90,7 +90,7 @@ void glabels::Outline::draw( QPainter* painter ) const
///
/// Create path for testing for hover condition
///
QPainterPath glabels::Outline::hoverPath( double scale ) const
QPainterPath Outline::hoverPath( double scale ) const
{
double s = 1 / scale;