summaryrefslogtreecommitdiffstats
path: root/sw
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2012-06-27 13:27:03 +0200
committerThomas Arnhold <thomas@arnhold.org>2012-06-27 13:27:03 +0200
commit51ce86f1ef01ad7719f90776cb1e915166660c3b (patch)
tree513bbc8bd35eae352f51512761fba150851eafb0 /sw
parentRemove some obsolete stuff (diff)
downloadcore-51ce86f1ef01ad7719f90776cb1e915166660c3b.tar.gz
core-51ce86f1ef01ad7719f90776cb1e915166660c3b.zip
Get rid of annoying IAccessibility2 comments
Change-Id: Ic1d7ff88e2d9e638deb2579a5fd18f751302d561
Diffstat (limited to 'sw')
-rw-r--r--sw/inc/access.hrc2
-rw-r--r--sw/inc/poolfmt.hrc2
-rw-r--r--sw/inc/unomap.hxx2
-rw-r--r--sw/source/ui/config/optpage.cxx3
-rw-r--r--sw/source/ui/docvw/access.src2
-rw-r--r--sw/source/ui/frmdlg/column.src2
-rw-r--r--sw/source/ui/index/cnttab.src4
-rw-r--r--sw/source/ui/misc/glossary.src2
-rw-r--r--sw/source/ui/misc/insfnote.hrc2
-rw-r--r--sw/source/ui/misc/insfnote.src2
-rw-r--r--sw/source/ui/table/convert.hrc2
-rw-r--r--sw/source/ui/table/convert.src2
-rw-r--r--sw/source/ui/table/tabledlg.cxx4
-rw-r--r--sw/source/ui/utlui/navipi.src2
-rw-r--r--sw/source/ui/utlui/poolfmt.src2
15 files changed, 2 insertions, 33 deletions
diff --git a/sw/inc/access.hrc b/sw/inc/access.hrc
index 6cfc23937803..928b0313d217 100644
--- a/sw/inc/access.hrc
+++ b/sw/inc/access.hrc
@@ -40,7 +40,6 @@
#define STR_ACCESS_ANNOTATION_BUTTON_NAME (RC_ACCESS_BEGIN + 20)
#define STR_ACCESS_ANNOTATION_BUTTON_DESC (RC_ACCESS_BEGIN + 21)
-//IAccessibility2 Implementation 2009-----
#define STR_ACCESS_PREVIEW_DOC_NAME (RC_ACCESS_BEGIN + 22)
#define STR_ACCESS_PREVIEW_DOC_SUFFIX (RC_ACCESS_BEGIN + 24)
#define STR_ACCESS_DOC_WORDPROCESSING (RC_ACCESS_BEGIN + 25)
@@ -50,7 +49,6 @@
#define STR_ACCESS_SW_CATEGORY (RC_ACCESS_BEGIN + 29)
#define STR_ACCESS_TL_GLOBAL (RC_ACCESS_BEGIN + 30)
#define STR_ACCESS_TL_CONTENT (RC_ACCESS_BEGIN + 31)
-//-----IAccessibility2 Implementation 2009
#define ACCESS_ACT_END STR_ACCESS_TL_CONTENT
diff --git a/sw/inc/poolfmt.hrc b/sw/inc/poolfmt.hrc
index 76809fea1172..38b522c7fce8 100644
--- a/sw/inc/poolfmt.hrc
+++ b/sw/inc/poolfmt.hrc
@@ -259,13 +259,11 @@
#define STR_POOLNUMRULE_BUL3 (RC_POOLNUMRULE_BEGIN+ 7)
#define STR_POOLNUMRULE_BUL4 (RC_POOLNUMRULE_BEGIN+ 8)
#define STR_POOLNUMRULE_BUL5 (RC_POOLNUMRULE_BEGIN+ 9)
-//IAccessibility2 Impplementaton 2009-----
//Solution:Define column item's accessible name ID.
#define STR_COLUMN_VALUESET_ITEM0 (RC_POOLNUMRULE_BEGIN + 10 )
#define STR_COLUMN_VALUESET_ITEM1 (RC_POOLNUMRULE_BEGIN + 11 )
#define STR_COLUMN_VALUESET_ITEM2 (RC_POOLNUMRULE_BEGIN + 12 )
#define STR_COLUMN_VALUESET_ITEM3 (RC_POOLNUMRULE_BEGIN + 13 )
#define STR_COLUMN_VALUESET_ITEM4 (RC_POOLNUMRULE_BEGIN + 14 )
-//-----IAccessibility2 Impplementaton 2009
#endif
diff --git a/sw/inc/unomap.hxx b/sw/inc/unomap.hxx
index 709373ddd696..9e7c152c083f 100644
--- a/sw/inc/unomap.hxx
+++ b/sw/inc/unomap.hxx
@@ -121,9 +121,7 @@
#define PROPERTY_MAP_PARA_AUTO_STYLE 96
#define PROPERTY_MAP_FLDTYP_DOCINFO_CUSTOM 97
#define PROPERTY_MAP_METAFIELD 98
-//IAccessibility2 Implementation 2009-----
#define PROPERTY_MAP_ACCESSIBILITY_TEXT_ATTRIBUTE 99
-//-----IAccessibility2 Implementation 2009
#define PROPERTY_MAP_END 100
//S&E
diff --git a/sw/source/ui/config/optpage.cxx b/sw/source/ui/config/optpage.cxx
index 89cb4eb5fff6..ee54b9a8b464 100644
--- a/sw/source/ui/config/optpage.cxx
+++ b/sw/source/ui/config/optpage.cxx
@@ -1809,13 +1809,12 @@ SwRedlineOptionsTabPage::SwRedlineOptionsTabPage( Window* pParent,
aLk = LINK(this, SwRedlineOptionsTabPage, ChangedMaskPrevHdl);
aMarkPosLB.SetSelectHdl( aLk );
aMarkColorLB.SetSelectHdl( aLk );
-//IAccessibility2 Impplementaton 2009-----
+
//solution: set different accessible name of four color box
aInsertColorLB.SetAccessibleName(::rtl::OUString( aInsertFT.GetDisplayText()) + ::rtl::OUString(aInsertColorFT.GetDisplayText()));
aDeletedColorLB.SetAccessibleName(::rtl::OUString( aDeletedFT.GetDisplayText()) + ::rtl::OUString( aDeletedColorFT.GetDisplayText()));
aChangedColorLB.SetAccessibleName(::rtl::OUString( aChangedFT.GetDisplayText()) + ::rtl::OUString( aChangedColorFT.GetDisplayText()));
aMarkColorLB.SetAccessibleName(::rtl::OUString( aMarkPosFT.GetDisplayText()) + ::rtl::OUString( aMarkColorFT.GetDisplayText()));
-//-----IAccessibility2 Impplementaton 2009
}
SwRedlineOptionsTabPage::~SwRedlineOptionsTabPage()
diff --git a/sw/source/ui/docvw/access.src b/sw/source/ui/docvw/access.src
index f0f6c1497d07..29a040bc7829 100644
--- a/sw/source/ui/docvw/access.src
+++ b/sw/source/ui/docvw/access.src
@@ -91,7 +91,6 @@ String STR_ACCESS_ANNOTATION_BUTTON_DESC
Text [ en-US ] = "Activate this button to open a list of actions which can be performed on this comment and other comments";
};
-//IAccessibility2 Implementation 2009-----
String STR_ACCESS_PREVIEW_DOC_NAME
{
Text [ en-US ] = "Document preview";
@@ -108,5 +107,4 @@ String STR_ACCESS_DOC_WORDPROCESSING_READONLY
{
Text [ en-US ] = "(read-only)";
};
-//-----IAccessibility2 Implementation 2009
diff --git a/sw/source/ui/frmdlg/column.src b/sw/source/ui/frmdlg/column.src
index 93ed085136b7..48de907d8c6f 100644
--- a/sw/source/ui/frmdlg/column.src
+++ b/sw/source/ui/frmdlg/column.src
@@ -438,7 +438,6 @@ ModalDialog DLG_COLUMN
Text [ en-US ] = "Columns";
};
-//IAccessibility2 Impplementaton 2009-----
String STR_ACCESS_PAGESETUP_SPACING
{
Text [ en-US ] = "Spacing between %1 and %2";
@@ -448,4 +447,3 @@ String STR_ACCESS_COLUMN_WIDTH
{
Text [ en-US ] = "Column %1 Width";
};
-//-----IAccessibility2 Impplementaton 2009
diff --git a/sw/source/ui/index/cnttab.src b/sw/source/ui/index/cnttab.src
index 6ee087b98caf..0af84bbc5c89 100644
--- a/sw/source/ui/index/cnttab.src
+++ b/sw/source/ui/index/cnttab.src
@@ -1208,9 +1208,7 @@ ModalDialog DLG_ADD_IDX_STYLES
};
MaskColor = IMAGE_MASK_COLOR ;
};
- //IAccessibility2 Implementation 2009-----
QuickHelpText [ en-US ] = "Left" ;
- //-----IAccessibility2 Implementation 2009
};
ImageButton PB_RIGHT
{
@@ -1226,9 +1224,7 @@ ModalDialog DLG_ADD_IDX_STYLES
};
MaskColor = IMAGE_MASK_COLOR ;
};
- //IAccessibility2 Implementation 2009-----
QuickHelpText [ en-US ] = "Right" ;
- //-----IAccessibility2 Implementation 2009
};
FixedLine FL_STYLES
{
diff --git a/sw/source/ui/misc/glossary.src b/sw/source/ui/misc/glossary.src
index 3c864d254e4e..607b30656145 100644
--- a/sw/source/ui/misc/glossary.src
+++ b/sw/source/ui/misc/glossary.src
@@ -282,12 +282,10 @@ String STR_GLOSSARY
{
Text [ en-US ] = "AutoText :" ;
};
-/*IAccessibility2 Implementation 2009-----*/
String STR_ACCESS_SW_CATEGORY
{
Text [ en-US ] = "Category" ;
};
-/*-----IAccessibility2 Implementation 2009*/
ModalDialog DLG_RENAME_GLOS
{
OutputSize = TRUE ;
diff --git a/sw/source/ui/misc/insfnote.hrc b/sw/source/ui/misc/insfnote.hrc
index 0e74a2e4d4a1..5356f57db8fe 100644
--- a/sw/source/ui/misc/insfnote.hrc
+++ b/sw/source/ui/misc/insfnote.hrc
@@ -31,6 +31,4 @@
#define BT_PREV 103
#define BT_NEXT 104
-//IAccessibility2 Implementation 2009-----
#define STR_CHAR 105
-//-----IAccessibility2 Implementation 2009
diff --git a/sw/source/ui/misc/insfnote.src b/sw/source/ui/misc/insfnote.src
index 212038a7ca0b..5c813e2b55f4 100644
--- a/sw/source/ui/misc/insfnote.src
+++ b/sw/source/ui/misc/insfnote.src
@@ -47,12 +47,10 @@ ModalDialog DLG_INS_FOOTNOTE
Group = TRUE ;
Left = TRUE ;
};
- //IAccessibility2 Implementation 2009-----
String STR_CHAR
{
Text [ en-US ] = "Character" ;
};
- //-----IAccessibility2 Implementation 2009
OKButton BT_OK
{
Pos = MAP_APPFONT ( 104 , 6 ) ;
diff --git a/sw/source/ui/table/convert.hrc b/sw/source/ui/table/convert.hrc
index d30bbcdd96b1..a48406b1974d 100644
--- a/sw/source/ui/table/convert.hrc
+++ b/sw/source/ui/table/convert.hrc
@@ -36,6 +36,4 @@
#define BT_AUTOFORMAT 102
#define BT_HELP 103
#define WIN_REPEAT_HEADER 104
-//IAccessibility2 Implementation 2009-----
#define STR_SYMBOL 105
-//-----IAccessibility2 Implementation 2009
diff --git a/sw/source/ui/table/convert.src b/sw/source/ui/table/convert.src
index 722ffdd02a46..ce31b15df0ac 100644
--- a/sw/source/ui/table/convert.src
+++ b/sw/source/ui/table/convert.src
@@ -182,12 +182,10 @@ ModalDialog DLG_CONV_TEXT_TABLE
Hide = TRUE ;
Text [ en-US ] = "Auto~Format..." ;
};
- /*IAccessibility2 Implementation 2009-----*/
String STR_SYMBOL
{
Text [ en-US ] = "Symbol" ;
};
- /*-----IAccessibility2 Implementation 2009*/
};
diff --git a/sw/source/ui/table/tabledlg.cxx b/sw/source/ui/table/tabledlg.cxx
index 9053b156935c..234827ac7f93 100644
--- a/sw/source/ui/table/tabledlg.cxx
+++ b/sw/source/ui/table/tabledlg.cxx
@@ -923,13 +923,11 @@ IMPL_LINK( SwTableColumnPage, AutoClickHdl, CheckBox *, pBox )
String sIndex = String::CreateFromInt32( aValueTbl[i] + 1 );
sEntry += sIndex;
pTextArr[i]->SetText( sEntry );
-//IAccessibility2 Impplementaton 2009-----
+
//added by menghu for SODC_5143,12/12/2006
String sColumnWidth = SW_RESSTR( STR_ACCESS_COLUMN_WIDTH);
sColumnWidth.SearchAndReplace( DEFINE_CONST_UNICODE("%1"), sIndex );
pFieldArr[i]->SetAccessibleName( sColumnWidth );
- //end of SODC_5143
-//-----IAccessibility2 Impplementaton 2009
}
aDownBtn.Enable(aValueTbl[0] > 0);
diff --git a/sw/source/ui/utlui/navipi.src b/sw/source/ui/utlui/navipi.src
index df11c6aee86a..486c59890060 100644
--- a/sw/source/ui/utlui/navipi.src
+++ b/sw/source/ui/utlui/navipi.src
@@ -506,7 +506,6 @@ ImageList IMG_NAVI_ENTRYBMP
};
-//IAccessibility2 Implementation 2009-----
String STR_ACCESS_TL_GLOBAL
{
Text [ en-US ] = "Global View";
@@ -515,4 +514,3 @@ String STR_ACCESS_TL_CONTENT
{
Text [ en-US ] = "Content View";
};
-//-----IAccessibility2 Implementation 2009
diff --git a/sw/source/ui/utlui/poolfmt.src b/sw/source/ui/utlui/poolfmt.src
index 9c40c4425eb1..e3afdd9bda80 100644
--- a/sw/source/ui/utlui/poolfmt.src
+++ b/sw/source/ui/utlui/poolfmt.src
@@ -729,7 +729,6 @@ String STR_POOLCHR_RUBYTEXT
{
Text [ en-US ] = "Rubies";
};
-//IAccessibility2 Implementation 2009-----
String STR_COLUMN_VALUESET_ITEM0
{
Text [ en-US ] = "1 column";
@@ -750,7 +749,6 @@ String STR_COLUMN_VALUESET_ITEM4
{
Text [ en-US ] = "2 columns with different size (left < right)";
};
-//-----IAccessibility2 Implementation 2009
String STR_POOLCHR_VERT_NUM
{
Text [ en-US ] = "Vertical Numbering Symbols";