mirror of
https://github.com/sqlitebrowser/sqlitebrowser.git
synced 2026-05-06 03:49:59 -05:00
Remove some TODO notes
Remove two TODO notes as they have been dealt with by now.
This commit is contained in:
@@ -447,8 +447,6 @@ void MainWindow::navigatePrevious()
|
||||
|
||||
void MainWindow::navigateNext()
|
||||
{
|
||||
// TODO: Fetch more data from DB if necessary
|
||||
|
||||
int curRow = ui->dataTable->currentIndex().row();
|
||||
curRow += 100;
|
||||
if(curRow >= m_browseTableModel->totalRowCount())
|
||||
@@ -459,8 +457,6 @@ void MainWindow::navigateNext()
|
||||
|
||||
void MainWindow::navigateGoto()
|
||||
{
|
||||
// TODO: Fetch more data from DB if necessary
|
||||
|
||||
int row = ui->editGoto->text().toInt();
|
||||
if(row <= 0)
|
||||
row = 1;
|
||||
|
||||
Reference in New Issue
Block a user