Kaydet (Commit) 28dfcd5d authored tarafından Andrea Gelmini's avatar Andrea Gelmini Kaydeden (comit) Michael Stahl

Fix typos

Change-Id: I204178ed4cf0fd3f43043cf1dfde85bb27002fee
Reviewed-on: https://gerrit.libreoffice.org/37498Tested-by: 's avatarJenkins <ci@libreoffice.org>
Reviewed-by: 's avatarMichael Stahl <mstahl@redhat.com>
üst 198f5a16
...@@ -127,7 +127,7 @@ bool CheckUnusedParams::VisitFunctionDecl(FunctionDecl const * decl) { ...@@ -127,7 +127,7 @@ bool CheckUnusedParams::VisitFunctionDecl(FunctionDecl const * decl) {
} }
FunctionDecl const * canon = decl->getCanonicalDecl(); FunctionDecl const * canon = decl->getCanonicalDecl();
std::string fqn = canon->getQualifiedNameAsString(); // becuase sometimes clang returns nonsense for the filename of canon std::string fqn = canon->getQualifiedNameAsString(); // because sometimes clang returns nonsense for the filename of canon
if (ignoreLocation(canon)) if (ignoreLocation(canon))
return true; return true;
if (isInUnoIncludeFile(compiler.getSourceManager().getSpellingLoc(canon->getLocation()))) if (isInUnoIncludeFile(compiler.getSourceManager().getSpellingLoc(canon->getLocation())))
......
...@@ -286,7 +286,7 @@ public class APIDescGetter extends DescGetter ...@@ -286,7 +286,7 @@ public class APIDescGetter extends DescGetter
{ {
continue; continue;
} }
// TODO Probleme here // TODO Problem here
String ifc_name = ""; // = line.substring(line.indexOf(";") + 2, line.lastIndexOf(";") - 1); String ifc_name = ""; // = line.substring(line.indexOf(";") + 2, line.lastIndexOf(";") - 1);
String meth_name = ""; // = line.substring(line.lastIndexOf(";") + 2, line.length() - 1); String meth_name = ""; // = line.substring(line.lastIndexOf(";") + 2, line.length() - 1);
......
...@@ -937,7 +937,7 @@ void SmCaretPosGraphBuildingVisitor::Visit( SmSubSupNode* pNode ) ...@@ -937,7 +937,7 @@ void SmCaretPosGraphBuildingVisitor::Visit( SmSubSupNode* pNode )
* *
* FROM * FROM
* \endcode * \endcode
* Notice, CSUP, etc. are actually granchildren, but inorder to ignore H, these are visited * Notice, CSUP, etc. are actually grandchildren, but inorder to ignore H, these are visited
* from here. If they are present, that is if pOper is an instance of SmSubSupNode. * from here. If they are present, that is if pOper is an instance of SmSubSupNode.
* *
* Graph over these, where "left" is before the SmOperNode and "right" is after: * Graph over these, where "left" is before the SmOperNode and "right" is after:
......
...@@ -2249,7 +2249,7 @@ IMPL_LINK(FmXFormShell, OnFoundData, FmFoundRecordInformation&, rfriWhere, void) ...@@ -2249,7 +2249,7 @@ IMPL_LINK(FmXFormShell, OnFoundData, FmFoundRecordInformation&, rfriWhere, void)
Reference<XControl> xControl( pFormObject ? impl_getControl( xControlModel, *pFormObject ) : Reference< XControl>() ); Reference<XControl> xControl( pFormObject ? impl_getControl( xControlModel, *pFormObject ) : Reference< XControl>() );
Reference< XGrid> xGrid(xControl, UNO_QUERY); Reference< XGrid> xGrid(xControl, UNO_QUERY);
DBG_ASSERT(xGrid.is(), "FmXFormShell::OnFoundData : invalid control!"); DBG_ASSERT(xGrid.is(), "FmXFormShell::OnFoundData : invalid control!");
// if one of the asserts fires, I probably did somethig wrong on building of m_arrSearchedControls // if one of the asserts fires, I probably did something wrong on building of m_arrSearchedControls
// enable a permanent cursor for the grid so we can see the found text // enable a permanent cursor for the grid so we can see the found text
Reference< XPropertySet> xModelSet(xControlModel, UNO_QUERY); Reference< XPropertySet> xModelSet(xControlModel, UNO_QUERY);
......
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