diff options
Diffstat (limited to 'scaddins/source')
-rw-r--r-- | scaddins/source/analysis/analysis.src | 2 | ||||
-rw-r--r-- | scaddins/source/analysis/analysishelper.cxx | 4 | ||||
-rw-r--r-- | scaddins/source/analysis/analysishelper.hxx | 2 | ||||
-rw-r--r-- | scaddins/source/datefunc/datefunc.cxx | 8 |
4 files changed, 8 insertions, 8 deletions
diff --git a/scaddins/source/analysis/analysis.src b/scaddins/source/analysis/analysis.src index 1ab7c49b001e..79dc97a07dec 100644 --- a/scaddins/source/analysis/analysis.src +++ b/scaddins/source/analysis/analysis.src @@ -981,7 +981,7 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS String 5 // description of parameter 2 GeStep { - Text [ en-US ] = "The threshhold value"; + Text [ en-US ] = "The threshold value"; }; }; diff --git a/scaddins/source/analysis/analysishelper.cxx b/scaddins/source/analysis/analysishelper.cxx index 6928e033f8bb..a380f614025f 100644 --- a/scaddins/source/analysis/analysishelper.cxx +++ b/scaddins/source/analysis/analysishelper.cxx @@ -2650,7 +2650,7 @@ ConvertDataList::ConvertDataList( void ) NEWDP( "T", 1.0000000000000000E00, CDC_Magnetism ); // Tesla NEWDP( "ga", 1.0000000000000000E04, CDC_Magnetism ); // Gauss - // TEMERATURE: 1 Kelvin is... + // TEMPERATURE: 1 Kelvin is... NEWL( "C", 1.0000000000000000E00, -2.7315000000000000E02, CDC_Temperature ); // Celsius NEWL( "cel", 1.0000000000000000E00, -2.7315000000000000E02, CDC_Temperature ); // Celsius also NEWL( "F", 1.8000000000000000E00, -2.5537222222222222E02, CDC_Temperature ); // Fahrenheit @@ -2660,7 +2660,7 @@ ConvertDataList::ConvertDataList( void ) NEWL( "Reau", 8.0000000000000000E-01, -2.7315000000000000E02, CDC_Temperature ); // *** Reaumur NEWL( "Rank", 1.8000000000000000E00, +0.0000000000000000E00, CDC_Temperature ); // *** Rankine - // VOLUMNE: 1 Liter is... + // VOLUME: 1 Liter is... NEWD( "tsp", 2.0284000000000000E02, CDC_Volume ); // Teaspoon NEWD( "tbs", 6.7613333333333333E01, CDC_Volume ); // Tablespoon NEWD( "oz", 3.3806666666666667E01, CDC_Volume ); // Ounce Liquid diff --git a/scaddins/source/analysis/analysishelper.hxx b/scaddins/source/analysis/analysishelper.hxx index bc387514a392..655670ad45dd 100644 --- a/scaddins/source/analysis/analysishelper.hxx +++ b/scaddins/source/analysis/analysishelper.hxx @@ -230,7 +230,7 @@ private: ::rtl::OUString aIntName; sal_uInt16 nUINameID; sal_uInt16 nDescrID; // leads also to parameter descriptions! - sal_Bool bDouble; // flag for names, wich already exist in Calc + sal_Bool bDouble; // flag for names, which already exists in Calc sal_Bool bWithOpt; // has internal parameter on first position sal_uInt16 nParam; // num of parameters diff --git a/scaddins/source/datefunc/datefunc.cxx b/scaddins/source/datefunc/datefunc.cxx index 80961bac1b0d..dbdd693d1c6b 100644 --- a/scaddins/source/datefunc/datefunc.cxx +++ b/scaddins/source/datefunc/datefunc.cxx @@ -707,14 +707,14 @@ sal_Int32 GetNullDate( const uno::Reference< beans::XPropertySet >& xOptions ) * The International Standard IS-8601 has decreed that Monday * shall be the first day of the week. * - * A week that lies partly in one year and partly in annother + * A week that lies partly in one year and partly in another * is assigned a number in the the year in which most of its days lie. * * That means that week 1 of any year is the week that contains the 4. January * * The internal representation of a Date used in the Addin is the number of days based on 01/01/0001 * - * A WeekDay can be then calculated by substracting 1 and calculating the rest of + * A WeekDay can be then calculated by subtracting 1 and calculating the rest of * a division by 7, which gives a 0 - 6 value for Monday - Sunday * * Using the 4. January rule explained above the formula @@ -724,7 +724,7 @@ sal_Int32 GetNullDate( const uno::Reference< beans::XPropertySet >& xOptions ) * calculates a number between 0-53 for each day which is in the same year as nJan4 * where 0 means that this week belonged to the year before. * - * If a day in the same or annother year is used in this formula this calculates + * If a day in the same or another year is used in this formula this calculates * an calendar week offset from a given 4. January * * nWeek2 = ( nDays2 - nJan4 + ( (nJan4-1) % 7 ) ) / 7 + 1; @@ -911,7 +911,7 @@ sal_Int32 SAL_CALL ScaDateAddIn::getDaysInYear( * The International Standard IS-8601 has decreed that Monday * shall be the first day of the week. * - * A WeekDay can be calculated by substracting 1 and calculating the rest of + * A WeekDay can be calculated by subtracting 1 and calculating the rest of * a division by 7 from the internal date represention * which gives a 0 - 6 value for Monday - Sunday * |