and now without debug printf()
[ardour.git] / libs / gtkmm2ext / gtkmm2ext / idle_adjustment.h
index 58e2f8f5bd066ff2415b3da1842e7f9e7ef528d3..15a8cb13f70299fabd6d2124ed985d2bcfc76911 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2000-2007 Paul Davis 
+    Copyright (C) 2000-2007 Paul Davis
 
     This program is free software; you can redistribute it and/or modify
     it under the terms of the GNU General Public License as published by
@@ -20,7 +20,9 @@
 #ifndef __gtkmm2ext_idle_adjustment_h__
 #define __gtkmm2ext_idle_adjustment_h__
 
+#include <stdint.h>
 #include <sys/time.h>
+
 #include <gtkmm/adjustment.h>
 
 #include "gtkmm2ext/visibility.h"
@@ -37,7 +39,7 @@ class LIBGTKMM2EXT_API IdleAdjustment : public sigc::trackable
 
   private:
        void underlying_adjustment_value_changed();
-       struct timeval last_vc;
+       int64_t last_vc;
        gint timeout_handler();
        bool timeout_queued;
 };