diff options
author | Dieter Hametner <dh (plus) vdr (at) gekrumbel (dot) de> | 2007-02-18 22:22:35 +0000 |
---|---|---|
committer | Dieter Hametner <dh (plus) vdr (at) gekrumbel (dot) de> | 2007-02-18 22:22:35 +0000 |
commit | 4c0d3398fc6444169ee47935b9ab814eb3929e72 (patch) | |
tree | eed61c51a9c32ee726553d893567419d67b3bfdd /tools.cpp | |
parent | 55076f14be853cb7cb1c801484267214e98c4a5e (diff) | |
download | vdr-plugin-live-4c0d3398fc6444169ee47935b9ab814eb3929e72.tar.gz vdr-plugin-live-4c0d3398fc6444169ee47935b9ab814eb3929e72.tar.bz2 |
- Added status box with current channel, program and elapsed time in the
logo area.
- Added support for progress bars to display elapsed content.
- Extendend ajax.js to be usable for non xml requests.
- adapted styles for the new features.
Diffstat (limited to 'tools.cpp')
-rw-r--r-- | tools.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -10,7 +10,7 @@ using namespace std; using namespace tnt; - + istream& operator>>( istream& is, tChannelID& ret ) { if ( is.rdbuf()->in_avail() > 0 ) { @@ -31,7 +31,7 @@ string FormatDateTime( char const* format, time_t time ) builder << "cannot represent timestamp " << time << " as local time"; throw runtime_error( builder.str() ); } - + char result[ 256 ]; if ( strftime( result, sizeof( result ), format, &tm_r ) == 0 ) { ostringstream builder; |