summaryrefslogtreecommitdiff
path: root/include/tools
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-12-31 15:19:09 +0000
committerCaolán McNamara <caolanm@redhat.com>2014-12-31 18:10:52 +0000
commit190196b98fc630d8aa3889e93797cb6268008447 (patch)
tree62a877d8d4e8ee1fa9065f77dcc8c23fbad7c2aa /include/tools
parent959bcd564bca2e33036e0947a293ef2009341cf7 (diff)
Date/Time no longer loaded from rsc files
Change-Id: Ia9ed86b0d96cac76c2e1639065a4ac594c2966b1
Diffstat (limited to 'include/tools')
-rw-r--r--include/tools/date.hxx3
-rw-r--r--include/tools/rcid.h3
-rw-r--r--include/tools/time.hxx3
3 files changed, 0 insertions, 9 deletions
diff --git a/include/tools/date.hxx b/include/tools/date.hxx
index e7505733c2a3..b0f1612f5bed 100644
--- a/include/tools/date.hxx
+++ b/include/tools/date.hxx
@@ -23,8 +23,6 @@
#include <com/sun/star/util/Date.hpp>
#include <sal/log.hxx>
-class ResId;
-
enum DayOfWeek { MONDAY, TUESDAY, WEDNESDAY, THURSDAY, FRIDAY,
SATURDAY, SUNDAY };
@@ -53,7 +51,6 @@ public:
Date( DateInitEmpty)
{ nDate = 0; }
Date( DateInitSystem );
- Date( const ResId & rResId );
Date( sal_uInt32 _nDate ) { Date::nDate = _nDate; }
Date( const Date& rDate )
{ nDate = rDate.nDate; }
diff --git a/include/tools/rcid.h b/include/tools/rcid.h
index b78a420c42e6..3bcbf441a50d 100644
--- a/include/tools/rcid.h
+++ b/include/tools/rcid.h
@@ -41,9 +41,6 @@
#define RSC_MENU (RSC_NOTYPE + 0x1c)
#define RSC_MENUITEM (RSC_NOTYPE + 0x1d) // only used internally
#define RSC_KEYCODE (RSC_NOTYPE + 0x1f)
-#define RSC_TIME (RSC_NOTYPE + 0x20)
-#define RSC_DATE (RSC_NOTYPE + 0x21)
-//#define RSC_INTERNATIONAL (RSC_NOTYPE + 0x22) // removed (2005-06-17)
#define RSC_IMAGE (RSC_NOTYPE + 0x23)
#define RSC_IMAGELIST (RSC_NOTYPE + 0x24)
diff --git a/include/tools/time.hxx b/include/tools/time.hxx
index cac4117e5426..140b69ffb4db 100644
--- a/include/tools/time.hxx
+++ b/include/tools/time.hxx
@@ -23,8 +23,6 @@
#include <tools/solar.h>
#include <com/sun/star/util/Time.hpp>
-class ResId;
-
/**
@WARNING: This class can serve both as wall clock time and time duration, and
the mixing of these concepts leads to problems such as there being
@@ -68,7 +66,6 @@ public:
Time( TimeInitEmpty )
{ nTime = 0; }
Time( TimeInitSystem );
- Time( const ResId & rResId );
Time( sal_Int64 _nTime ) { Time::nTime = _nTime; }
Time( const tools::Time& rTime );
Time( const ::com::sun::star::util::Time& rTime );