diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2013-02-26 19:30:07 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2013-02-26 19:30:07 +0000 |
commit | bca327466d9461ee453ae2cb9e0175f7c9895b2b (patch) | |
tree | 16eb73866ac1209ecaef9a10bb379b802c9c9968 /plugins/HistorySweeperLight/src/options.cpp | |
parent | ef522ce54a4a2e2b737759b619e667ef819540c6 (diff) |
added precompiled header
added version info
git-svn-id: http://svn.miranda-ng.org/main/trunk@3787 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/HistorySweeperLight/src/options.cpp')
-rw-r--r-- | plugins/HistorySweeperLight/src/options.cpp | 48 |
1 files changed, 24 insertions, 24 deletions
diff --git a/plugins/HistorySweeperLight/src/options.cpp b/plugins/HistorySweeperLight/src/options.cpp index 5ca89ed4c0..cba8459859 100644 --- a/plugins/HistorySweeperLight/src/options.cpp +++ b/plugins/HistorySweeperLight/src/options.cpp @@ -21,30 +21,30 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #include "historysweeperlight.h"
-// Time Stamps strings -const char* time_stamp_strings[] = -{ - LPGEN("Delete older than 1 day"), - LPGEN("Delete older than 3 days"), - LPGEN("Delete older than 7 days"), - LPGEN("Delete older than 2 weeks (14 days)"), - LPGEN("Delete older than 1 month (30 days)"), - LPGEN("Delete older than 3 months (90 days)"), - LPGEN("Delete older than 6 months (180 days)"), - LPGEN("Delete older than 1 year (365 days)") -}; - -const char* keep_strings[] = -{ - LPGEN("Keep 1 last event"), - LPGEN("Keep 2 last events"), - LPGEN("Keep 5 last events"), - LPGEN("Keep 10 last events"), - LPGEN("Keep 20 last events"), - LPGEN("Keep 50 last events") -}; - -static IconItem iconList[] = +// Time Stamps strings
+const char* time_stamp_strings[] =
+{
+ LPGEN("Delete older than 1 day"),
+ LPGEN("Delete older than 3 days"),
+ LPGEN("Delete older than 7 days"),
+ LPGEN("Delete older than 2 weeks (14 days)"),
+ LPGEN("Delete older than 1 month (30 days)"),
+ LPGEN("Delete older than 3 months (90 days)"),
+ LPGEN("Delete older than 6 months (180 days)"),
+ LPGEN("Delete older than 1 year (365 days)")
+};
+
+const char* keep_strings[] =
+{
+ LPGEN("Keep 1 last event"),
+ LPGEN("Keep 2 last events"),
+ LPGEN("Keep 5 last events"),
+ LPGEN("Keep 10 last events"),
+ LPGEN("Keep 20 last events"),
+ LPGEN("Keep 50 last events")
+};
+
+static IconItem iconList[] =
{
{ "Default Action", "actG", IDI_ACTG },
{ "Action 1", "act1", IDI_ACT1 },
|