- Modified Tray Notify area and quicklaunch size to be smaller (to accomodate the 640x480 of the standard vga driver in ROS). NOTE that this really needs to autosize based on contents.

- Format the time for your specific locale.  This allows 12 hour clock under windows, note that the function used probably isn't implemented in ROS. *not committed, not committing until after 0.2 is released*

svn path=/trunk/; revision=7600
This commit is contained in:
Richard Campbell 2004-01-13 05:09:41 +00:00
parent a9582ff53d
commit 22d27ef5ec
2 changed files with 3 additions and 3 deletions

View file

@ -26,7 +26,7 @@
//
#define QUICKLAUNCH_WIDTH 208
#define QUICKLAUNCH_WIDTH 64
#define IDW_QUICKLAUNCHBAR 101

View file

@ -31,7 +31,7 @@
#define CLASSNAME_CLOCKWINDOW TEXT("TrayClockWClass")
#define NOTIFYAREA_WIDTH 244
#define NOTIFYAREA_WIDTH 64
/// NotifyIconIndex is used for maintaining the order of notification icons.
@ -120,6 +120,6 @@ protected:
bool FormatTime();
void Paint();
TCHAR _time[16];
WCHAR _time[16];
ToolTip _tooltip;
};