Skip to content

Commit

Permalink
Resolve spell checking issues in HANA provider
Browse files Browse the repository at this point in the history
  • Loading branch information
Maksim Rylov authored and mrylov committed Dec 7, 2020
1 parent 5929a76 commit dd95772
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions cmake/FindODBC.cmake
Expand Up @@ -10,7 +10,7 @@ Find an Open Database Connectivity (ODBC) include directory and library.
On Windows, when building with Visual Studio, this module assumes the ODBC
library is provided by the available Windows SDK.

On Unix, this module allows to search for ODBC library provided by
On Unix, this module allows searching for ODBC library provided by
unixODBC or iODBC implementations of ODBC API.
This module reads hint about location of the config program:

Expand Down Expand Up @@ -77,7 +77,7 @@ Limitations
On Windows, this module does not search for iODBC.
On Unix, there is no way to prefer unixODBC over iODBC, or vice versa,
other than providing the config program location using the ``ODBC_CONFIG``.
This module does not allow to search for a specific ODBC driver.
This module does not allows searching for a specific ODBC driver.

#]=======================================================================]

Expand Down
2 changes: 1 addition & 1 deletion src/providers/hana/qgshanadataitems.cpp
Expand Up @@ -82,7 +82,7 @@ QVector<QgsDataItem *> QgsHanaConnectionItem::createChildren()
}
catch ( const QException &ex )
{
QgsErrorItem *itemError = new QgsErrorItem( this, tr( "Server error occured" ), mPath + "/error" );
QgsErrorItem *itemError = new QgsErrorItem( this, tr( "Server error occurred" ), mPath + "/error" );
itemError->setToolTip( ex.what() );
items.append( itemError );
}
Expand Down

0 comments on commit dd95772

Please sign in to comment.