summaryrefslogtreecommitdiff
path: root/libs/pbd
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2008-07-07 15:52:22 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2008-07-07 15:52:22 +0000
commitdda3143dc76877657454dac0fde2f1cfad800c85 (patch)
treed8493d484a74f5cd4ce0ac881fc83966369a0b5b /libs/pbd
parent3be87c2c91acf3cc238e3531cfed2638d6c1c7f2 (diff)
move to scons Clone everywhere rather than Copy; add Session::micro_locate() for ongoing work on video sync; debugging output for export precision problem; minor clean up to IO::find_possible_connection(); fix up a few signed/unsigned issues; make "feature lines" always be the right height as tracks resize; change version to 2.5
git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@3517 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/pbd')
-rw-r--r--libs/pbd/undo.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/libs/pbd/undo.cc b/libs/pbd/undo.cc
index f59228082d..4ed1e70ebc 100644
--- a/libs/pbd/undo.cc
+++ b/libs/pbd/undo.cc
@@ -21,6 +21,7 @@
#include <iostream>
#include <string>
#include <sstream>
+#include <time.h>
#include <pbd/undo.h>
#include <pbd/xml++.h>
@@ -34,6 +35,7 @@ using namespace sigc;
UndoTransaction::UndoTransaction ()
{
_clearing = false;
+ gettimeofday (&_timestamp, 0);
}
UndoTransaction::UndoTransaction (const UndoTransaction& rhs)