diff options
author | Martin Jones <martin.jones@nokia.com> | 2009-11-27 03:24:02 (GMT) |
---|---|---|
committer | Martin Jones <martin.jones@nokia.com> | 2009-11-27 03:24:02 (GMT) |
commit | 7d2bf2c6e3aa23d52ef7305915c6f8db02a5d08f (patch) | |
tree | db116b44870e35603dc0d47f9c878525ebfa532c /examples/network/torrent/mainwindow.cpp | |
parent | 4c78c5c0c2570f5052433f7abfb9d26eb1f2abe3 (diff) | |
parent | a432859f0494b127495932b7365b62a4e579dc2e (diff) | |
download | Qt-7d2bf2c6e3aa23d52ef7305915c6f8db02a5d08f.zip Qt-7d2bf2c6e3aa23d52ef7305915c6f8db02a5d08f.tar.gz Qt-7d2bf2c6e3aa23d52ef7305915c6f8db02a5d08f.tar.bz2 |
Merge branch 'kinetic-declarativeui' of scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
Diffstat (limited to 'examples/network/torrent/mainwindow.cpp')
-rw-r--r-- | examples/network/torrent/mainwindow.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/network/torrent/mainwindow.cpp b/examples/network/torrent/mainwindow.cpp index f38682e..4c35d93 100644 --- a/examples/network/torrent/mainwindow.cpp +++ b/examples/network/torrent/mainwindow.cpp @@ -175,8 +175,8 @@ MainWindow::MainWindow(QWidget *parent) // Set up connections connect(torrentView, SIGNAL(itemSelectionChanged()), this, SLOT(setActionsEnabled())); - connect(torrentView, SIGNAL(fileDropped(const QString &)), - this, SLOT(acceptFileDrop(const QString &))); + connect(torrentView, SIGNAL(fileDropped(QString)), + this, SLOT(acceptFileDrop(QString))); connect(uploadLimitSlider, SIGNAL(valueChanged(int)), this, SLOT(setUploadLimit(int))); connect(downloadLimitSlider, SIGNAL(valueChanged(int)), |