aboutsummaryrefslogtreecommitdiffstats
path: root/src/screen.h
diff options
context:
space:
mode:
authorKalle Wallin <kaw@linux.se>2004-07-03 16:48:56 +0000
committerKalle Wallin <kaw@linux.se>2004-07-03 16:48:56 +0000
commit41f97e2fed32496da010db6a1e472617d7ad11c1 (patch)
treeb9d6fed401fc1f18bdfe04403bd34e82994d4e88 /src/screen.h
parent0f0719248b95bdc26b4c18b0b967140d82871a1a (diff)
downloadmpd-41f97e2fed32496da010db6a1e472617d7ad11c1.tar.gz
mpd-41f97e2fed32496da010db6a1e472617d7ad11c1.tar.xz
mpd-41f97e2fed32496da010db6a1e472617d7ad11c1.zip
Replaced the time_t type with glibs GTime
git-svn-id: https://svn.musicpd.org/ncmpc/trunk@1785 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to '')
-rw-r--r--src/screen.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/screen.h b/src/screen.h
index d3cad8cb2..c725bb13c 100644
--- a/src/screen.h
+++ b/src/screen.h
@@ -41,10 +41,11 @@ typedef struct
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;