diff options
author | (no author) <(no author)@4f64403b-2f21-0410-a795-97e2b3489a10> | 2010-04-04 23:41:11 +0000 |
---|---|---|
committer | (no author) <(no author)@4f64403b-2f21-0410-a795-97e2b3489a10> | 2010-04-04 23:41:11 +0000 |
commit | 0c2db8f67782848603cdd845713ca70e285c0f49 (patch) | |
tree | 9ee0652d8c23593b567b91cd5e34c13c62d61611 /worldtime_protocol/timezone_list.h | |
parent | d11bac94bbcbd92bf550ccca094a10bb50e6df4b (diff) |
Fixed incorrect time after time zone table changes
Reduced size plugin size
git-svn-id: https://server.scottellis.com.au/svn/mim_plugs@487 4f64403b-2f21-0410-a795-97e2b3489a10
Diffstat (limited to 'worldtime_protocol/timezone_list.h')
-rw-r--r-- | worldtime_protocol/timezone_list.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/worldtime_protocol/timezone_list.h b/worldtime_protocol/timezone_list.h index 27168d3..e497e2b 100644 --- a/worldtime_protocol/timezone_list.h +++ b/worldtime_protocol/timezone_list.h @@ -13,12 +13,12 @@ typedef struct tagLISTITEM { int timezone_list_index;
} LISTITEM;
-#include <vector>
-typedef std::vector<LISTITEM> ITEMLIST;
+typedef OBJLIST<LISTITEM> ITEMLIST;
extern ITEMLIST listbox_items;
void load_listbox_items();
void save_listbox_items();
+void copy_listbox_items(ITEMLIST &dest, ITEMLIST &src);
#endif
|