summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2012-05-24 22:20:19 +0900
committerTakeshi Abe <tabe@fixedpoint.jp>2012-05-24 22:29:38 +0900
commitd428360e48f069622b0aeccf74b88af0be632be8 (patch)
treead5cc5540e59746c70a43f8169e08963ae590c00
parent9746c6de3a05fe9284d6d6bb2f636bfe912733cd (diff)
removed unused const char[]
Change-Id: Ia5f26c13e7bae42685230769fa86b52703eb2f7e
-rw-r--r--autodoc/source/display/idl/hfi_globalindex.cxx12
-rw-r--r--filter/source/svg/svgwriter.cxx4
-rw-r--r--framework/source/fwi/uielement/constitemcontainer.cxx2
-rw-r--r--framework/source/uiconfiguration/uicategorydescription.cxx1
-rw-r--r--framework/source/uielement/uicommanddescription.cxx2
-rw-r--r--sw/source/ui/vba/vbalisthelper.cxx10
-rw-r--r--unotools/source/config/historyoptions.cxx1
7 files changed, 0 insertions, 32 deletions
diff --git a/autodoc/source/display/idl/hfi_globalindex.cxx b/autodoc/source/display/idl/hfi_globalindex.cxx
index dc0766b665b8..d02d3ccfd76b 100644
--- a/autodoc/source/display/idl/hfi_globalindex.cxx
+++ b/autodoc/source/display/idl/hfi_globalindex.cxx
@@ -112,18 +112,6 @@ const intt C_nNamesArrayOffset = intt(ary::idl::Module::class_id);
const int C_nIxField = 9;
-
-
-const char C_cAlphabet[] =
-"<a class=\"inverse\" href=\"index-1.html\"><B>A</B></a> <a class=\"inverse\" href=\"index-2.html\"><B>B</B></a> <a class=\"inverse\" href=\"index-3.html\"><B>C</B></a> <a class=\"inverse\" href=\"index-4.html\"><B>D</B></a> <a class=\"inverse\" href=\"index-5.html\"><B>E</B></a> "
-"<a class=\"inverse\" href=\"index-6.html\"><B>F</B></a> <a class=\"inverse\" href=\"index-7.html\"><B>G</B></a> <a class=\"inverse\" href=\"index-8.html\"><B>H</B></a> <a class=\"inverse\" href=\"index-9.html\"><B>I</B></a> <a class=\"inverse\" href=\"index-10.html\"><B>J</B></a> "
-"<a class=\"inverse\" href=\"index-11.html\"><B>K</B></a> <a class=\"inverse\" href=\"index-12.html\"><B>L</B></a> <a class=\"inverse\" href=\"index-13.html\"><B>M</B></a> <a class=\"inverse\" href=\"index-14.html\"><B>N</B></a> <a class=\"inverse\" href=\"index-15.html\"><B>O</B></a> "
-"<a class=\"inverse\" href=\"index-16.html\"><B>P</B></a> <a class=\"inverse\" href=\"index-17.html\"><B>Q</B></a> <a class=\"inverse\" href=\"index-18.html\"><B>R</B></a> <a class=\"inverse\" href=\"index-19.html\"><B>S</B></a> <a class=\"inverse\" href=\"index-20.html\"><B>T</B></a> "
-"<a class=\"inverse\" href=\"index-21.html\"><B>U</B></a> <a class=\"inverse\" href=\"index-22.html\"><B>V</B></a> <a class=\"inverse\" href=\"index-23.html\"><B>W</B></a> <a class=\"inverse\" href=\"index-24.html\"><B>X</B></a> <a class=\"inverse\" href=\"index-25.html\"><B>Y</B></a> "
-"<a class=\"inverse\" href=\"index-26.html\"><B>Z</B></a>";
-
-
-
HF_IdlGlobalIndex::PageData G_PageData;
} // end anonymous namespace
diff --git a/filter/source/svg/svgwriter.cxx b/filter/source/svg/svgwriter.cxx
index 4d417070320d..5bcbb5aeb2e6 100644
--- a/filter/source/svg/svgwriter.cxx
+++ b/filter/source/svg/svgwriter.cxx
@@ -49,10 +49,7 @@ static const char aXMLElemLine[] = "line";
static const char aXMLElemRect[] = "rect";
static const char aXMLElemEllipse[] = "ellipse";
static const char aXMLElemPath[] = "path";
-static const char aXMLElemPolygon[] = "polygon";
-static const char aXMLElemPolyLine[] = "polyline";
static const char aXMLElemText[] = "text";
-static const char aXMLElemTSpan[] = "tspan";
static const char aXMLElemImage[] = "image";
static const char aXMLElemMask[] = "mask";
static const char aXMLElemPattern[] = "pattern";
@@ -79,7 +76,6 @@ static const char aXMLAttrRX[] = "rx";
static const char aXMLAttrRY[] = "ry";
static const char aXMLAttrWidth[] = "width";
static const char aXMLAttrHeight[] = "height";
-static const char aXMLAttrPoints[] = "points";
static const char aXMLAttrStroke[] = "stroke";
static const char aXMLAttrStrokeOpacity[] = "stroke-opacity";
static const char aXMLAttrStrokeWidth[] = "stroke-width";
diff --git a/framework/source/fwi/uielement/constitemcontainer.cxx b/framework/source/fwi/uielement/constitemcontainer.cxx
index 414f0aba7ff8..fa19b8fb2e02 100644
--- a/framework/source/fwi/uielement/constitemcontainer.cxx
+++ b/framework/source/fwi/uielement/constitemcontainer.cxx
@@ -42,8 +42,6 @@ using namespace com::sun::star::lang;
using namespace com::sun::star::beans;
using namespace com::sun::star::container;
-const char WRONG_TYPE_EXCEPTION[] = "Type must be com::sun::star::uno::Sequence< com::sun::star::beans::PropertyValue >";
-
const int PROPHANDLE_UINAME = 1;
const int PROPCOUNT = 1;
const char PROPNAME_UINAME[] = "UIName";
diff --git a/framework/source/uiconfiguration/uicategorydescription.cxx b/framework/source/uiconfiguration/uicategorydescription.cxx
index c955565960da..414a4da3575e 100644
--- a/framework/source/uiconfiguration/uicategorydescription.cxx
+++ b/framework/source/uiconfiguration/uicategorydescription.cxx
@@ -79,7 +79,6 @@ struct ModuleToCategory
const char* pCommands;
};
-static const char CATEGORY[] = "Category";
static const char GENERIC_MODULE_NAME[] = "generic";
static const char CONFIGURATION_ROOT_ACCESS[] = "/org.openoffice.Office.UI.";
static const char CONFIGURATION_CATEGORY_ELEMENT_ACCESS[] = "/Commands/Categories";
diff --git a/framework/source/uielement/uicommanddescription.cxx b/framework/source/uielement/uicommanddescription.cxx
index a14d5938d54d..3cd314c8eda7 100644
--- a/framework/source/uielement/uicommanddescription.cxx
+++ b/framework/source/uielement/uicommanddescription.cxx
@@ -79,8 +79,6 @@ struct ModuleToCommands
const char* pCommands;
};
-static const char GENERIC_UICOMMANDS[] = "generic";
-static const char COMMANDS[] = "Commands";
static const char CONFIGURATION_ROOT_ACCESS[] = "/org.openoffice.Office.UI.";
static const char CONFIGURATION_CMD_ELEMENT_ACCESS[] = "/UserInterface/Commands";
static const char CONFIGURATION_POP_ELEMENT_ACCESS[] = "/UserInterface/Popups";
diff --git a/sw/source/ui/vba/vbalisthelper.cxx b/sw/source/ui/vba/vbalisthelper.cxx
index 65949d650277..c4b001fa0c1c 100644
--- a/sw/source/ui/vba/vbalisthelper.cxx
+++ b/sw/source/ui/vba/vbalisthelper.cxx
@@ -41,22 +41,12 @@ static const char WORD_BULLET_GALLERY[] = "WdBullet";
static const char WORD_NUMBER_GALLERY[] = "WdNumber";
static const char WORD_OUTLINE_NUMBER_GALLERY[] = "WdOutlineNumber";
-static const char UNO_NAME_ADJUST[] = "Adjust";
static const char UNO_NAME_PARENT_NUMBERING[] = "ParentNumbering";
static const char UNO_NAME_PREFIX[] = "Prefix";
static const char UNO_NAME_SUFFIX[] = "Suffix";
static const char UNO_NAME_CHAR_STYLE_NAME[] = "CharStyleName";
-static const char UNO_NAME_START_WITH[] = "StartWith";
-static const char UNO_NAME_POSITION_AND_SPACE_MODE[] = "PositionAndSpaceMode";
-static const char UNO_NAME_LABEL_FOLLOWED_BY[] = "LabelFollowedBy";
-static const char UNO_NAME_LIST_TAB_STOP_POSITION[] = "ListtabStopPosition";
-static const char UNO_NAME_FIRST_LINE_INDENT[] = "FirstLineIndent";
-static const char UNO_NAME_INDENT_AT[] = "IndentAt";
static const char UNO_NAME_NUMBERING_TYPE[] = "NumberingType";
-static const char UNO_NAME_BULLET_ID[] = "BulletId";
static const char UNO_NAME_BULLET_CHAR[] = "BulletChar";
-static const char UNO_NAME_BULLET_FONT_NAME[] = "BulletFontName";
-static const char UNO_NAME_BULLET_FONT[] = "BulletFont";
static const sal_Int16 CHAR_CLOSED_DOT = 8226;
static const sal_Int16 CHAR_EMPTY_DOT = 111;
diff --git a/unotools/source/config/historyoptions.cxx b/unotools/source/config/historyoptions.cxx
index 93d5854f0676..949f82ca8f16 100644
--- a/unotools/source/config/historyoptions.cxx
+++ b/unotools/source/config/historyoptions.cxx
@@ -78,7 +78,6 @@ namespace {
const char s_sItemList[] = "ItemList";
const char s_sOrderList[] = "OrderList";
const char s_sHistoryItemRef[] = "HistoryItemRef";
- const char s_sURL[] = "URL";
const char s_sFilter[] = "Filter";
const char s_sTitle[] = "Title";
const char s_sPassword[] = "Password";