summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 0f07192)
raw | patch | inline | side by side (parent: 0f07192)
author | Kalle Wallin <kaw@linux.se> | |
Sat, 3 Jul 2004 16:48:56 +0000 (16:48 +0000) | ||
committer | Kalle Wallin <kaw@linux.se> | |
Sat, 3 Jul 2004 16:48:56 +0000 (16:48 +0000) |
src/screen.h | patch | blob | history | |
src/support.h | patch | blob | history |
diff --git a/src/screen.h b/src/screen.h
index d3cad8cb2ff30aa36c47272b6468a80d6db4d3b6..c725bb13c64258ce4abdb7b12b4bfc32d696dbe5 100644 (file)
--- a/src/screen.h
+++ b/src/screen.h
GList *screen_list;
- time_t start_timestamp;
- time_t status_timestamp;
- time_t input_timestamp;
- command_t last_cmd;
+ /* GTime is equivalent to time_t */
+ GTime start_timestamp;
+ GTime status_timestamp;
+ GTime input_timestamp;
+ GTime last_cmd;
int cols, rows;
diff --git a/src/support.h b/src/support.h
index 4182d2e746dddd3326b458dd6f6b95ec697a5d94..0a72e39b0684f87cfce4b19489a79b65c48ce950 100644 (file)
--- a/src/support.h
+++ b/src/support.h
typedef struct
{
int offset;
- time_t t;
+ GTime t; /* GTime is equivalent to time_t */
} scroll_state_t;