Kaydet (Commit) a8f31d51 authored tarafından Andrea Gelmini's avatar Andrea Gelmini Kaydeden (comit) Mark Page

Fix typos

Change-Id: I8bdced3fa572074aedabdcfce841adf525ae8b81
Reviewed-on: https://gerrit.libreoffice.org/44710Tested-by: 's avatarJenkins <ci@libreoffice.org>
Reviewed-by: 's avatarMark Page <aptitude@btconnect.com>
üst cab6e683
...@@ -831,7 +831,7 @@ void SbiIoSystem::ReadCon(OString& rIn) ...@@ -831,7 +831,7 @@ void SbiIoSystem::ReadCon(OString& rIn)
aPrompt.clear(); aPrompt.clear();
} }
// output of a MessageBox, if theres a CR in the console-buffer // output of a MessageBox, if there's a CR in the console-buffer
void SbiIoSystem::WriteCon(const OUString& rText) void SbiIoSystem::WriteCon(const OUString& rText)
{ {
......
...@@ -438,7 +438,7 @@ namespace dbp ...@@ -438,7 +438,7 @@ namespace dbp
// set the new connection // set the new connection
if ( _bAutoDispose ) if ( _bAutoDispose )
{ {
// for this, use a AutoDisposer (so the conn is cleaned up when the form dies or get's another connection) // for this, use a AutoDisposer (so the conn is cleaned up when the form dies or gets another connection)
Reference< XRowSet > xFormRowSet( m_aContext.xForm, UNO_QUERY ); Reference< XRowSet > xFormRowSet( m_aContext.xForm, UNO_QUERY );
rtl::Reference<OAutoConnectionDisposer> pAutoDispose = new OAutoConnectionDisposer( xFormRowSet, _rxConn ); rtl::Reference<OAutoConnectionDisposer> pAutoDispose = new OAutoConnectionDisposer( xFormRowSet, _rxConn );
} }
......
...@@ -57,7 +57,7 @@ import com.sun.star.lang.XTypeProvider; ...@@ -57,7 +57,7 @@ import com.sun.star.lang.XTypeProvider;
import com.sun.star.beans.PropertyAttribute; import com.sun.star.beans.PropertyAttribute;
/** /**
This component contains the followin properties: This component contains the following properties:
* <table border> * <table border>
* <tr> * <tr>
* <th> Property Name </th> * <th> Property Name </th>
......
...@@ -80,7 +80,7 @@ private: ...@@ -80,7 +80,7 @@ private:
std::unique_ptr<double[]> mpForecast; // forecasted value array std::unique_ptr<double[]> mpForecast; // forecasted value array
SCSIZE mnSmplInPrd; // samples per period SCSIZE mnSmplInPrd; // samples per period
double mfStepSize; // increment of X in maRange double mfStepSize; // increment of X in maRange
double mfAlpha, mfBeta, mfGamma; // constants to minimise the RMSE in the ES-equations double mfAlpha, mfBeta, mfGamma; // constants to minimize the RMSE in the ES-equations
SCSIZE mnCount; // No of data points SCSIZE mnCount; // No of data points
bool mbInitialised; bool mbInitialised;
int mnMonthDay; // n-month X-interval, value is day of month int mnMonthDay; // n-month X-interval, value is day of month
......
...@@ -2158,12 +2158,12 @@ void ScDBFunc::RepeatDB( bool bRecord ) ...@@ -2158,12 +2158,12 @@ void ScDBFunc::RepeatDB( bool bRecord )
if (bSort) if (bSort)
{ {
pDBData->GetSortParam( aSortParam ); // range may have chaged pDBData->GetSortParam( aSortParam ); // range may have changed
Sort( aSortParam, false, false); Sort( aSortParam, false, false);
} }
if (bQuery) if (bQuery)
{ {
pDBData->GetQueryParam( aQueryParam ); // range may have chaged pDBData->GetQueryParam( aQueryParam ); // range may have changed
ScRange aAdvSource; ScRange aAdvSource;
if (pDBData->GetAdvancedQuerySource(aAdvSource)) if (pDBData->GetAdvancedQuerySource(aAdvSource))
{ {
...@@ -2179,7 +2179,7 @@ void ScDBFunc::RepeatDB( bool bRecord ) ...@@ -2179,7 +2179,7 @@ void ScDBFunc::RepeatDB( bool bRecord )
} }
if (bSubTotal) if (bSubTotal)
{ {
pDBData->GetSubTotalParam( aSubTotalParam ); // range may have chaged pDBData->GetSubTotalParam( aSubTotalParam ); // range may have changed
aSubTotalParam.bRemoveOnly = false; aSubTotalParam.bRemoveOnly = false;
DoSubTotals( aSubTotalParam, false ); DoSubTotals( aSubTotalParam, false );
} }
......
...@@ -1007,7 +1007,7 @@ void SdOutliner::RestoreStartPosition() ...@@ -1007,7 +1007,7 @@ void SdOutliner::RestoreStartPosition()
// start position is not requested. // start position is not requested.
if (mnStartPageIndex == (sal_uInt16)-1 ) if (mnStartPageIndex == (sal_uInt16)-1 )
bRestore = false; bRestore = false;
// Dont't restore when the view shell is not valid. // Don't restore when the view shell is not valid.
std::shared_ptr<sd::ViewShell> pViewShell (mpWeakViewShell.lock()); std::shared_ptr<sd::ViewShell> pViewShell (mpWeakViewShell.lock());
if (pViewShell == nullptr) if (pViewShell == nullptr)
bRestore = false; bRestore = false;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment