summaryrefslogtreecommitdiff
path: root/forms/source/inc/frm_strings.hxx
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2012-05-17 14:00:15 +0100
committerCaolán McNamara <caolanm@redhat.com>2012-05-17 14:03:26 +0100
commit5dcf536b69848b56f1199b81e4b7ed87a0a3864d (patch)
tree86f28d6db1963680549b6111ca99f95ca580f763 /forms/source/inc/frm_strings.hxx
parentacd9cda35457f0a839bf9713c261022c39cd8269 (diff)
merge the 5 ConstAsciiString duplicate classes together
a) merge them together and move it into comphelper b) turn it into a POD rather than having vast amounts of destructors registered into the cxa_atexit chain Change-Id: I04d3b9d7804f8e233013c916df9d617a0f84f96a
Diffstat (limited to 'forms/source/inc/frm_strings.hxx')
-rw-r--r--forms/source/inc/frm_strings.hxx43
1 files changed, 3 insertions, 40 deletions
diff --git a/forms/source/inc/frm_strings.hxx b/forms/source/inc/frm_strings.hxx
index b6c3e8fcce79..f74b411d4713 100644
--- a/forms/source/inc/frm_strings.hxx
+++ b/forms/source/inc/frm_strings.hxx
@@ -31,56 +31,19 @@
#include <sal/types.h>
#include <rtl/ustring.hxx>
+#include <comphelper/string.hxx>
//..............................................................................
namespace frm
{
-//..............................................................................
-
- struct ConstAsciiString
- {
- const sal_Char* ascii;
- sal_Int32 length;
-
- inline operator ::rtl::OUString () const;
- inline operator const sal_Char* () const { return ascii; }
-
- inline ConstAsciiString(const sal_Char* _pAsciiZeroTerminated, const sal_Int32 _nLength);
- inline ~ConstAsciiString();
-
- private:
- mutable ::rtl::OUString* ustring;
- };
-
- //------------------------------------------------------------
- inline ConstAsciiString::ConstAsciiString(const sal_Char* _pAsciiZeroTerminated, const sal_Int32 _nLength)
- :ascii(_pAsciiZeroTerminated)
- ,length(_nLength)
- ,ustring(NULL)
- {
- }
-
- //------------------------------------------------------------
- inline ConstAsciiString::~ConstAsciiString()
- {
- delete ustring;
- ustring = NULL;
- }
-
- //------------------------------------------------------------
- inline ConstAsciiString::operator ::rtl::OUString () const
- {
- if ( !ustring )
- ustring = new ::rtl::OUString( ascii, length, RTL_TEXTENCODING_ASCII_US );
- return *ustring;
- }
+ using comphelper::string::ConstAsciiString;
#ifndef FORMS_IMPLEMENT_STRINGS
#define FORMS_CONSTASCII_STRING( ident, string ) \
extern const ConstAsciiString ident
#else
#define FORMS_CONSTASCII_STRING( ident, string ) \
- extern const ConstAsciiString ident( string, sizeof( string )-1 )
+ extern const ConstAsciiString ident = {RTL_CONSTASCII_STRINGPARAM(string)}
#endif
//..............................................................................