Skip to content

Commit

Permalink
Make a method private
Browse files Browse the repository at this point in the history
  • Loading branch information
MKleusberg committed Jan 23, 2017
1 parent d236f6d commit f8165d4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/sqlitetypes.h
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,6 @@ class Index : public Object
void setColumn(int index, IndexedColumnPtr c) { m_columns[index] = c; }
IndexedColumnPtr& column(int index) { return m_columns[index]; }
int findColumn(const QString& name) const;
QStringList columnSqlList() const;

void clear();

Expand All @@ -374,6 +373,8 @@ class Index : public Object
static ObjectPtr parseSQL(const QString& sSQL);

private:
QStringList columnSqlList() const;

bool m_unique;
QString m_table;
QString m_whereExpr;
Expand Down

0 comments on commit f8165d4

Please sign in to comment.