diff options
author | rathnor <rathnor> | 2003-03-23 01:33:31 (GMT) |
---|---|---|
committer | rathnor <rathnor> | 2003-03-23 01:33:31 (GMT) |
commit | 029e4e5dc7fccad2a7020d0f532e94ed50fb4dfa (patch) | |
tree | ae4ed06f6ad5a5e36d1a541698e5175a3f21c4fe /src/Toolbar.cc | |
parent | 524481403e4f31b98f401cc43843197a2513224f (diff) | |
download | fluxbox_pavel-029e4e5dc7fccad2a7020d0f532e94ed50fb4dfa.zip fluxbox_pavel-029e4e5dc7fccad2a7020d0f532e94ed50fb4dfa.tar.bz2 |
Some fixes for when strftime isn't available
Diffstat (limited to 'src/Toolbar.cc')
-rw-r--r-- | src/Toolbar.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Toolbar.cc b/src/Toolbar.cc index 1aa8764..70e7020 100644 --- a/src/Toolbar.cc +++ b/src/Toolbar.cc | |||
@@ -22,7 +22,7 @@ | |||
22 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | 22 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
23 | // DEALINGS IN THE SOFTWARE. | 23 | // DEALINGS IN THE SOFTWARE. |
24 | 24 | ||
25 | // $Id: Toolbar.cc,v 1.65 2003/03/03 21:51:07 rathnor Exp $ | 25 | // $Id: Toolbar.cc,v 1.66 2003/03/23 01:33:31 rathnor Exp $ |
26 | 26 | ||
27 | #include "Toolbar.hh" | 27 | #include "Toolbar.hh" |
28 | 28 | ||
@@ -663,7 +663,7 @@ void Toolbar::checkClock(bool redraw, bool date) { | |||
663 | char t[9]; | 663 | char t[9]; |
664 | if (date) { | 664 | if (date) { |
665 | // format the date... with special consideration for y2k ;) | 665 | // format the date... with special consideration for y2k ;) |
666 | if (screen().getDateFormat() == Blackbox::B_EuropeanDate) { | 666 | if (screen().getDateFormat() == Fluxbox::B_EUROPEANDATE) { |
667 | sprintf(t, | 667 | sprintf(t, |
668 | i18n->getMessage( | 668 | i18n->getMessage( |
669 | ToolbarSet, ToolbarNoStrftimeDateFormatEu, | 669 | ToolbarSet, ToolbarNoStrftimeDateFormatEu, |