X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fdesigner%2Fselection.h;h=21c5de187f0667ff4c0d82ab30f1093c4ff153c5;hb=52cbe8d99669f843f8f75c51128e2748584dd03a;hp=36e44354212b70f1d202ac5fed44f5f1c807bd5e;hpb=36beacc579d3132642ed4d98ce5a6d99842b5812;p=r2c2.git diff --git a/source/designer/selection.h b/source/designer/selection.h index 36e4435..21c5de1 100644 --- a/source/designer/selection.h +++ b/source/designer/selection.h @@ -8,11 +8,9 @@ class Selection { public: - typedef std::set TrackSet; - sigc::signal signal_changed; - const TrackSet &get_tracks() const { return tracks; } + const std::set &get_tracks() const { return tracks; } Marklin::Track *get_track() const; unsigned size() const { return tracks.size(); } void clear(); @@ -22,7 +20,7 @@ public: void select_more(); void select_linked(); private: - TrackSet tracks; + std::set tracks; }; #endif