summaryrefslogtreecommitdiffstats
path: root/sd
diff options
context:
space:
mode:
authorIvan Timofeev <timofeev.i.s@gmail.com>2013-09-07 16:57:15 +0400
committerIvan Timofeev <timofeev.i.s@gmail.com>2013-09-08 09:46:50 +0400
commit3a21a874fda58524a56a9e378decf2e6310e48b2 (patch)
treeea7b42051f94473779de278f39e3f3aa4288528f /sd
parentString->OUString (diff)
downloadcore-3a21a874fda58524a56a9e378decf2e6310e48b2.tar.gz
core-3a21a874fda58524a56a9e378decf2e6310e48b2.zip
StringToURL does nothing
since the beginning, see ed8faf768ac256732e7aaa378738f78391a407a3 Change-Id: I73b59c0a3b18d50cf48a5532994956909c2720d7
Diffstat (limited to 'sd')
-rw-r--r--sd/source/filter/html/htmlex.cxx41
-rw-r--r--sd/source/filter/html/htmlex.hxx1
2 files changed, 17 insertions, 25 deletions
diff --git a/sd/source/filter/html/htmlex.cxx b/sd/source/filter/html/htmlex.cxx
index aa56b692cb6e..a10a2b52ec9f 100644
--- a/sd/source/filter/html/htmlex.cxx
+++ b/sd/source/filter/html/htmlex.cxx
@@ -315,7 +315,7 @@ OUString HtmlState::SetLink( const OUString& aLink, const OUString& aTarget )
if (!aLink.isEmpty())
{
aStr.AppendAscii( "<a href=\"" );
- aStr += HtmlExport::StringToURL(aLink);
+ aStr += aLink;
if (!aTarget.isEmpty())
{
aStr.AppendAscii( "\" target=\"" );
@@ -1544,7 +1544,7 @@ bool HtmlExport::CreateHtmlForPresPages()
if( nPage == mnSdPageCount )
nPage = 0;
- aStr += StringToURL(*mpHTMLFiles[nPage]);
+ aStr += *mpHTMLFiles[nPage];
aStr.AppendAscii( "\">\r\n" );
}
@@ -1565,7 +1565,7 @@ bool HtmlExport::CreateHtmlForPresPages()
// Image
aStr.AppendAscii( "<center>" );
aStr.AppendAscii( "<img src=\"" );
- aStr += StringToURL( *mpImageFiles[nSdPage] );
+ aStr += *mpImageFiles[nSdPage];
aStr.AppendAscii( "\" alt=\"\"" );
if (!aClickableObjects.empty())
@@ -1901,7 +1901,7 @@ bool HtmlExport::CreateContentPage()
aStr.AppendAscii( "<p><strong>" );
aStr += RESTOHTML(STR_HTMLEXP_EMAIL);
aStr.AppendAscii( ":</strong> <a href=\"mailto:" );
- aStr += StringToURL(maEMail);
+ aStr += maEMail;
aStr.AppendAscii( "\">" );
aStr += StringToHTMLString(maEMail);
aStr.AppendAscii( "</a></p>\r\n" );
@@ -1912,7 +1912,7 @@ bool HtmlExport::CreateContentPage()
aStr.AppendAscii( "<p><strong>" );
aStr += RESTOHTML(STR_HTMLEXP_HOMEPAGE);
aStr.AppendAscii( ":</strong> <a href=\"" );
- aStr += StringToURL(maHomePage);
+ aStr += maHomePage;
aStr.AppendAscii( "\">" );
aStr += StringToHTMLString(maHomePage);
aStr.AppendAscii( "</a> </p>\r\n" );
@@ -1930,7 +1930,7 @@ bool HtmlExport::CreateContentPage()
if(mbDownload)
{
aStr.AppendAscii( "<p><a href=\"" );
- aStr += StringToURL(maDocFileName);
+ aStr += maDocFileName;
aStr.AppendAscii( "\">" );
aStr += RESTOHTML(STR_HTMLEXP_DOWNLOAD);
aStr.AppendAscii( "</a></p>\r\n" );
@@ -1941,7 +1941,7 @@ bool HtmlExport::CreateContentPage()
String aText;
aText.AppendAscii( "<img src=\"" );
- aText += StringToURL( *mpThumbnailFiles[nSdPage] );
+ aText += *mpThumbnailFiles[nSdPage];
aText.AppendAscii( "\" width=\"256\" height=\"192\" alt=\"" );
aText += StringToHTMLString( *mpPageNames[nSdPage] );
aText.AppendAscii( "\">" );
@@ -2288,11 +2288,11 @@ bool HtmlExport::CreateFrames()
{
aStr.AppendAscii( " <frameset rows=\"42,*\">\r\n" );
aStr.AppendAscii( " <frame src=\"navbar3" );
- aStr += StringToURL(maHTMLExtension);
+ aStr += maHTMLExtension;
aStr.AppendAscii( "\" name=\"navbar2\" marginwidth=\"4\" marginheight=\"4\" scrolling=\"no\">\r\n" );
}
aStr.AppendAscii( " <frame src=\"outline0" );
- aStr += StringToURL(maHTMLExtension);
+ aStr += maHTMLExtension;
aStr.AppendAscii( "\" name=\"outline\">\r\n" );
if(mbImpress)
aStr.AppendAscii( " </frameset>\r\n" );
@@ -2307,17 +2307,17 @@ bool HtmlExport::CreateFrames()
aStr.AppendAscii( " <frameset rows=\"42,*\">\r\n" );
aStr.AppendAscii( " <frame src=\"navbar0" );
- aStr += StringToURL(maHTMLExtension);
+ aStr += maHTMLExtension;
aStr.AppendAscii( "\" name=\"navbar1\" marginwidth=\"4\" marginheight=\"4\" scrolling=\"no\">\r\n" );
aStr.AppendAscii( " <frame src=\"" );
- aStr += StringToURL(*mpHTMLFiles[0]);
+ aStr += *mpHTMLFiles[0];
aStr.AppendAscii( "\" name=\"show\" marginwidth=\"4\" marginheight=\"4\">\r\n" );
if(mbNotes)
{
aStr.AppendAscii( " <frame src=\"note0" );
- aStr += StringToURL(maHTMLExtension);
+ aStr += maHTMLExtension;
aStr.AppendAscii( "\" name=\"notes\">\r\n" );
}
aStr.AppendAscii( " </frameset>\r\n" );
@@ -2672,7 +2672,7 @@ OUString HtmlExport::CreateLink( const OUString& aLink,
const OUString& aTarget ) const
{
String aStr( "<a href=\"" );
- aStr += StringToURL(aLink);
+ aStr += aLink;
if (!aTarget.isEmpty())
{
aStr.AppendAscii( "\" target=\"" );
@@ -2693,7 +2693,7 @@ OUString HtmlExport::CreateImage( const OUString& aImage, const OUString& aAltTe
sal_Int16 nHeight ) const
{
String aStr( "<img src=\"");
- aStr += StringToURL(aImage);
+ aStr += aImage;
aStr.AppendAscii( "\" border=0" );
if (!aAltText.isEmpty())
@@ -2758,7 +2758,7 @@ OUString HtmlExport::CreateHTMLCircleArea( sal_uLong nRadius,
aStr.Append(sal_Unicode(','));
aStr += OUString::number(nRadius);
aStr.AppendAscii( "\" href=\"" );
- aStr += StringToURL(rHRef);
+ aStr += rHRef;
aStr.AppendAscii( "\">\n" );
return aStr;
@@ -2799,7 +2799,7 @@ OUString HtmlExport::CreateHTMLPolygonArea( const ::basegfx::B2DPolyPolygon& rPo
aStr.Append( sal_Unicode(',') );
}
aStr.AppendAscii( "\" href=\"" );
- aStr += StringToURL(rHRef);
+ aStr += rHRef;
aStr.AppendAscii( "\">\n" );
}
@@ -2822,7 +2822,7 @@ OUString HtmlExport::CreateHTMLRectArea( const Rectangle& rRect,
aStr.Append(sal_Unicode(','));
aStr += OUString::number(rRect.Bottom());
aStr.AppendAscii( "\" href=\"" );
- aStr += StringToURL(rHRef);
+ aStr += rHRef;
aStr.AppendAscii( "\">\n" );
return aStr;
@@ -3147,13 +3147,6 @@ bool HtmlExport::checkForExistingFiles()
return bFound;
}
-// ---------------------------------------------------------------------
-
-OUString HtmlExport::StringToURL( const OUString& rURL )
-{
- return rURL;
-}
-
OUString HtmlExport::GetButtonName( int nButton ) const
{
String aName;
diff --git a/sd/source/filter/html/htmlex.hxx b/sd/source/filter/html/htmlex.hxx
index 9ef1d507e174..85a32e7e8c34 100644
--- a/sd/source/filter/html/htmlex.hxx
+++ b/sd/source/filter/html/htmlex.hxx
@@ -215,7 +215,6 @@ class HtmlExport
static OUString ColorToHTMLString( Color aColor );
static OUString StringToHTMLString( const OUString& rString );
- static OUString StringToURL( const OUString& rURL );
};
#endif // _SD_HTMLEX_HXX