summaryrefslogtreecommitdiff
path: root/cui/source/options
diff options
context:
space:
mode:
Diffstat (limited to 'cui/source/options')
-rw-r--r--cui/source/options/optchart.cxx10
-rw-r--r--cui/source/options/optchart.src7
2 files changed, 6 insertions, 11 deletions
diff --git a/cui/source/options/optchart.cxx b/cui/source/options/optchart.cxx
index cf7d025c5e48..34e5c1af59c9 100644
--- a/cui/source/options/optchart.cxx
+++ b/cui/source/options/optchart.cxx
@@ -227,11 +227,11 @@ IMPL_LINK( SvxDefaultColorOptPage, RemoveChartColor, PushButton*, pButton )
if( pColorConfig )
{
OSL_ENSURE(pColorConfig->GetColorList().size() > 1, "don't delete the last chart color");
- QueryBox aQuery(pButton, CUI_RES(RID_OPTQB_COLOR_CHART_DELETE));
- aQuery.SetText(String(CUI_RES(RID_OPTSTR_COLOR_CHART_DELETE)));
- if(RET_YES == aQuery.Execute())
- {
+ MessageDialog aQuery(pButton, "QueryDeleteChartColorDialog",
+ "cui/ui/querydeletechartcolordialog.ui");
+ if (RET_YES == aQuery.Execute())
+ {
pColorConfig->GetColorList().remove( nIndex );
aLbChartColors.Clear();
@@ -244,7 +244,7 @@ IMPL_LINK( SvxDefaultColorOptPage, RemoveChartColor, PushButton*, pButton )
else if (aLbChartColors.GetEntryCount() > 0)
aLbChartColors.SelectEntryPos( nIndex );
else
- aPBRemove.Enable( sal_False );
+ aPBRemove.Enable(true);
}
}
diff --git a/cui/source/options/optchart.src b/cui/source/options/optchart.src
index 3034b1348dd7..1653216e5d0c 100644
--- a/cui/source/options/optchart.src
+++ b/cui/source/options/optchart.src
@@ -84,12 +84,7 @@ String RID_SVXSTR_DIAGRAM_ROW
Text [ en-US ] = "Data Series $(ROW)" ;
};
-QueryBox RID_OPTQB_COLOR_CHART_DELETE
-{
- Buttons = WB_YES_NO ;
- DefButton = WB_DEF_NO ;
- Message [ en-US ] = "Do you really want to delete the chart color?" ;
-};
+
String RID_OPTSTR_COLOR_CHART_DELETE
{
Text [ en-US ] = "Chart Color Deletion" ;