Changeset 67684 in webkit


Ignore:
Timestamp:
Sep 16, 2010 6:31:34 PM (14 years ago)
Author:
tonikitoo@webkit.org
Message:

2010-09-12 Antonio Gomes <tonikitoo@webkit.org>

Reviewed by Andreas Kling.

Remove useless parameter from MainWindow class' constructor.

The parameter defaults to an empty URL and is not being used by any caller. Apart from that
and is also not referred in the constructor body and does not make much sense.

  • QtTestBrowser/mainwindow.cpp: (MainWindow::MainWindow):
  • QtTestBrowser/mainwindow.h:
Location:
trunk/WebKitTools
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKitTools/ChangeLog

    r67676 r67684  
     12010-09-12  Antonio Gomes  <tonikitoo@webkit.org>
     2
     3        Reviewed by Andreas Kling.
     4
     5        Remove useless parameter from MainWindow class' constructor.
     6
     7        The parameter defaults to an empty URL and is not being used by any caller. Apart from that it is also
     8        not referred in the constructor body and does not make much sense.
     9
     10        * QtTestBrowser/mainwindow.cpp:
     11        (MainWindow::MainWindow):
     12        * QtTestBrowser/mainwindow.h:
     13
    1142010-09-15  Tony Chang  <tony@chromium.org>
    215
  • trunk/WebKitTools/QtTestBrowser/mainwindow.cpp

    r65581 r67684  
    3636#include "utils.h"
    3737
    38 MainWindow::MainWindow(const QString& url)
     38MainWindow::MainWindow()
    3939    : m_page(new WebPage(this))
    4040{
  • trunk/WebKitTools/QtTestBrowser/mainwindow.h

    r67554 r67684  
    4343
    4444public:
    45     MainWindow(const QString& url = QString());
     45    MainWindow();
    4646
    4747    void addCompleterEntry(const QUrl& url);
Note: See TracChangeset for help on using the changeset viewer.