Some style cleanup to libglabels.

This commit is contained in:
Jim Evins
2015-08-11 17:18:49 -04:00
parent de8ec9b66a
commit 0ad6caeeca
46 changed files with 1294 additions and 380 deletions
+7 -1
View File
@@ -26,7 +26,13 @@
namespace libglabels
{
Frame::Frame( const Frame &other )
Frame::Frame( const QString& id )
: mId(id), mNLabels(0), mLayoutDescription("")
{
}
Frame::Frame( const Frame& other )
{
mId = other.mId;
mNLabels = 0;