summaryrefslogtreecommitdiff
path: root/basctl
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2019-12-18 11:52:01 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2019-12-18 12:23:44 +0100
commitfb1eac64df88baae9f211d052793773686c0e180 (patch)
treea40173243f206c2b056ea0866659710232772f4a /basctl
parent82dce922e6d36b40dd0571b0c00666cd6fc1a8ac (diff)
sal_Char->char in avmedia..basic
Change-Id: Ied1331d979539ef1183da64c55351b57d24f4a4f Reviewed-on: https://gerrit.libreoffice.org/85371 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'basctl')
-rw-r--r--basctl/source/basicide/baside2b.cxx2
-rw-r--r--basctl/source/basicide/doceventnotifier.cxx2
-rw-r--r--basctl/source/basicide/register.cxx2
3 files changed, 3 insertions, 3 deletions
diff --git a/basctl/source/basicide/baside2b.cxx b/basctl/source/basicide/baside2b.cxx
index c29f3e179636..83fe6a481768 100644
--- a/basctl/source/basicide/baside2b.cxx
+++ b/basctl/source/basicide/baside2b.cxx
@@ -110,7 +110,7 @@ OUString getTextEngineText (ExtTextEngine& rEngine)
aMemStream.SetLineDelimiter( LINEEND_LF );
rEngine.Write( aMemStream );
std::size_t nSize = aMemStream.Tell();
- OUString aText( static_cast<const sal_Char*>(aMemStream.GetData()),
+ OUString aText( static_cast<const char*>(aMemStream.GetData()),
nSize, RTL_TEXTENCODING_UTF8 );
return aText;
}
diff --git a/basctl/source/basicide/doceventnotifier.cxx b/basctl/source/basicide/doceventnotifier.cxx
index 96eea35b662b..b8806a58bdd3 100644
--- a/basctl/source/basicide/doceventnotifier.cxx
+++ b/basctl/source/basicide/doceventnotifier.cxx
@@ -133,7 +133,7 @@ namespace basctl
struct EventEntry
{
- const sal_Char* pEventName;
+ const char* pEventName;
void (DocumentEventListener::*listenerMethod)( const ScriptDocument& _rDocument );
};
static EventEntry const aEvents[] = {
diff --git a/basctl/source/basicide/register.cxx b/basctl/source/basicide/register.cxx
index f74ff4075337..c73c97eeadf8 100644
--- a/basctl/source/basicide/register.cxx
+++ b/basctl/source/basicide/register.cxx
@@ -33,7 +33,7 @@ using namespace ::com::sun::star::lang;
extern "C" {
-SAL_DLLPUBLIC_EXPORT void* basctl_component_getFactory( const sal_Char* pImplementationName,
+SAL_DLLPUBLIC_EXPORT void* basctl_component_getFactory( const char* pImplementationName,
void* pServiceManager,
void* )
{