mirror of
https://github.com/sqlitebrowser/sqlitebrowser.git
synced 2026-04-30 08:59:32 -05:00
Clean up the code and make some more minor optimisations
This also includes replacing some more Qt containers by their STL counterparts.
This commit is contained in:
+2
-2
@@ -109,7 +109,7 @@ public slots:
|
||||
void reloadSettings();
|
||||
void setCurrentTable(const sqlb::ObjectIdentifier& name);
|
||||
void updateRecordsetLabel();
|
||||
void jumpToRow(const sqlb::ObjectIdentifier& table, QString column, const QByteArray& value);
|
||||
void jumpToRow(const sqlb::ObjectIdentifier& table, std::string column, const QByteArray& value);
|
||||
|
||||
signals:
|
||||
void projectModified();
|
||||
@@ -117,7 +117,7 @@ signals:
|
||||
void selectionChangedByDoubleClick(QModelIndex index);
|
||||
void statusMessageRequested(QString message);
|
||||
void updatePlot(ExtendedTableWidget* tableWidget, SqliteTableModel* model, BrowseDataTableSettings* settings, bool keepOrResetSelection);
|
||||
void createView(QString sql);
|
||||
void createView(std::string sql);
|
||||
void requestFileOpen(QString file);
|
||||
|
||||
private slots:
|
||||
|
||||
Reference in New Issue
Block a user