Skip to content

Commit

Permalink
Some minor cleaning up.
Browse files Browse the repository at this point in the history
  • Loading branch information
agarny committed Jan 25, 2018
1 parent 6fd46be commit 2586662
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/plugins/datastoreinterface.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -382,7 +382,7 @@ DataStoreVariables DataStoreData::variables() const
//==============================================================================

DataStore::DataStore(const QString &pUri) :
mlUri(pUri),
mUri(pUri),
mVoi(new DataStoreVariable()),
mVariables(DataStoreVariables())
{
Expand All @@ -406,7 +406,7 @@ QString DataStore::uri() const
{
// Return our URI

return mlUri;
return mUri;
}

//==============================================================================
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/datastoreinterface.h
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ class DataStore
void addValues(const double &pVoiValue);

private:
QString mlUri;
QString mUri;

DataStoreVariable *mVoi;
DataStoreVariables mVariables;
Expand Down

0 comments on commit 2586662

Please sign in to comment.