summaryrefslogtreecommitdiff
path: root/oovbaapi/ooo/vba/excel
diff options
context:
space:
mode:
authorTrevor Murphy <trevor.m.murphy@gmail.com>2010-10-19 23:45:24 -0500
committerNorbert Thiebaud <nthiebaud@gmail.com>2010-10-19 23:45:24 -0500
commitb74679e29ea519e8d4c9e5cf8471f4f366f10414 (patch)
tree03521bfa10a8c34b07a282552ffbd67b9ead451b /oovbaapi/ooo/vba/excel
parent8bd677c532aed25970288e1f45634b9304c920f0 (diff)
Minor libs-core comment clean-up
Diffstat (limited to 'oovbaapi/ooo/vba/excel')
-rw-r--r--oovbaapi/ooo/vba/excel/XApplication.idl8
-rw-r--r--oovbaapi/ooo/vba/excel/XPageSetup.idl2
-rw-r--r--oovbaapi/ooo/vba/excel/XWorksheet.idl2
3 files changed, 6 insertions, 6 deletions
diff --git a/oovbaapi/ooo/vba/excel/XApplication.idl b/oovbaapi/ooo/vba/excel/XApplication.idl
index f3c02aed9ffa..602551455fc4 100644
--- a/oovbaapi/ooo/vba/excel/XApplication.idl
+++ b/oovbaapi/ooo/vba/excel/XApplication.idl
@@ -66,7 +66,7 @@ interface XApplication
[attribute, readonly] XWindow ActiveWindow;
[attribute, readonly] XWorksheet ActiveSheet;
[attribute, readonly] ooo::vba::XAssistant Assistant;
- [attribute, readonly] ooo::vba::XFileSearch FileSearch; //liuchen 2009-8-18, add the support of VBA Application.FileSearch
+ [attribute, readonly] ooo::vba::XFileSearch FileSearch;
[attribute] long Calculation;
[attribute, readonly] XWorkbook ThisWorkbook;
[attribute, readonly] ooo::vba::XFileDialog FileDialog;
@@ -78,8 +78,8 @@ interface XApplication
[attribute] long Cursor;
[attribute] boolean EnableEvents;
[attribute] boolean Visible;
- [attribute] boolean Iteration; //liuchen 2009-11-25
- [attribute] long EnableCancelKey; //liuchen 2009-11-26
+ [attribute] boolean Iteration;
+ [attribute] long EnableCancelKey;
void setDefaultFilePath([in] string DefaultFilePath) raises(com::sun::star::script::BasicErrorException);
@@ -110,7 +110,7 @@ interface XApplication
void Volatile([in] any Volatile);
any Caller( [in] any aIndex );
any MenuBars( [in] any aIndex );
- any International([in] long Index); //liuchen 2009-11-26
+ any International([in] long Index);
any GetSaveAsFilename( [in] any InitialFilename, [in] any FileFilter, [in] any FilterIndex, [in] any Title,[in] any ButtonText);
void Undo(); //2009-10-11 limingl
double InchesToPoints([in] double Inches);
diff --git a/oovbaapi/ooo/vba/excel/XPageSetup.idl b/oovbaapi/ooo/vba/excel/XPageSetup.idl
index 4b526feecc5b..c9d109e3014c 100644
--- a/oovbaapi/ooo/vba/excel/XPageSetup.idl
+++ b/oovbaapi/ooo/vba/excel/XPageSetup.idl
@@ -65,7 +65,7 @@ interface XPageSetup : com::sun::star::uno::XInterface
[attribute] boolean CenterVertically;
[attribute] boolean CenterHorizontally;
[attribute] boolean PrintHeadings;
- [attribute] long PaperSize; //liuchen 2009-12-11
+ [attribute] long PaperSize;
};
diff --git a/oovbaapi/ooo/vba/excel/XWorksheet.idl b/oovbaapi/ooo/vba/excel/XWorksheet.idl
index 8b0aee057563..2f8ba6a0d4ef 100644
--- a/oovbaapi/ooo/vba/excel/XWorksheet.idl
+++ b/oovbaapi/ooo/vba/excel/XWorksheet.idl
@@ -78,7 +78,7 @@ interface XWorksheet
void Activate();
void Calculate( );
- void Select([in] any Replace); //liuchen 2009-9-2, add the input parameter to support expand selection
+ void Select([in] any Replace);
void Move([in] any Before,[in] any After );
void Copy([in] any Before,[in] any After );
void Paste([in] any Destination,[in] any Link);