summaryrefslogtreecommitdiff
path: root/sc/source/ui/inc/scuiimoptdlg.hxx
diff options
context:
space:
mode:
authorEike Rathke <erack@redhat.com>2012-04-25 14:17:00 +0200
committerEike Rathke <erack@redhat.com>2012-04-25 14:19:23 +0200
commit3cceb8a900cd1fe1ae9bdb0c2e532e82a1835861 (patch)
tree84a4a91a1c7c05673dd47270b87e318cd387ed40 /sc/source/ui/inc/scuiimoptdlg.hxx
parentc041db6f59888adc90ee8257eafe150d874c46c9 (diff)
changes to fdo#45664 EasyHack
* in dialog, placed "Save cell formulas" checkbox directly under "Save cell content as shown" as they are related and "Fixed column width" should be last * also reordered entries in .src file for overview * added HelpIDs, also to older "Quote all text cells" checkbox * reordered checkbox member variables for tab order * do not disable "Save cell content as shown" if "Save cell formulas" is checked, they are independent, content as shown still applies to value cells * changed label to "Save cell formulas instead of calculated values" for clarity * initialize "Save cell formulas" with view option that was removed from ScDocShell::AsciiSave()
Diffstat (limited to 'sc/source/ui/inc/scuiimoptdlg.hxx')
-rw-r--r--sc/source/ui/inc/scuiimoptdlg.hxx5
1 files changed, 2 insertions, 3 deletions
diff --git a/sc/source/ui/inc/scuiimoptdlg.hxx b/sc/source/ui/inc/scuiimoptdlg.hxx
index 3f4551366c79..91032218c9ee 100644
--- a/sc/source/ui/inc/scuiimoptdlg.hxx
+++ b/sc/source/ui/inc/scuiimoptdlg.hxx
@@ -59,10 +59,10 @@ private:
ComboBox aEdFieldSep;
FixedText aFtTextSep;
ComboBox aEdTextSep;
- CheckBox aCbQuoteAll;
CheckBox aCbShown;
- CheckBox aCbFixed;
CheckBox aCbFormulas;
+ CheckBox aCbQuoteAll;
+ CheckBox aCbFixed;
OKButton aBtnOk;
CancelButton aBtnCancel;
HelpButton aBtnHelp;
@@ -74,7 +74,6 @@ private:
sal_uInt16 GetCodeFromCombo( const ComboBox& rEd ) const;
DECL_LINK( FixedWidthHdl, CheckBox* );
- DECL_LINK( SaveFormulasHdl, CheckBox* );
DECL_LINK( DoubleClickHdl, ListBox* );
};