]> gitweb.fperrin.net Git - GpsPrune.git/blob - src/tim/prune/undo/UndoSplitSegments.java
85968b76d26b68f147e39c6d7791726b859f7e25
[GpsPrune.git] / src / tim / prune / undo / UndoSplitSegments.java
1 package tim.prune.undo;
2
3 import tim.prune.I18nManager;
4 import tim.prune.data.Track;
5
6 /**
7  * Undo splitting of track segments
8  */
9 public class UndoSplitSegments extends UndoMergeTrackSegments
10 {
11         /** Constructor */
12         public UndoSplitSegments(Track inTrack) {
13                 super(inTrack, 0, inTrack.getNumPoints()-1);
14         }
15
16         /**
17          * @return description of operation
18          */
19         public String getDescription()
20         {
21                 return I18nManager.getText("undo.splitsegments");
22         }
23 }