summaryrefslogtreecommitdiffstats
path: root/examples/network/torrent
diff options
context:
space:
mode:
Diffstat (limited to 'examples/network/torrent')
-rw-r--r--examples/network/torrent/mainwindow.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/network/torrent/mainwindow.cpp b/examples/network/torrent/mainwindow.cpp
index 63f7245f54..1b10241f6e 100644
--- a/examples/network/torrent/mainwindow.cpp
+++ b/examples/network/torrent/mainwindow.cpp
@@ -234,7 +234,7 @@ int MainWindow::rowOfClient(TorrentClient *client) const
void MainWindow::loadSettings()
{
// Load base settings (last working directory, upload/download limits).
- QSettings settings("Trolltech", "Torrent");
+ QSettings settings("QtProject", "Torrent");
lastDirectory = settings.value("LastDirectory").toString();
if (lastDirectory.isEmpty())
lastDirectory = QDir::currentPath();
@@ -411,7 +411,7 @@ void MainWindow::saveSettings()
saveChanges = false;
// Prepare and reset the settings
- QSettings settings("Trolltech", "Torrent");
+ QSettings settings("QtProject", "Torrent");
settings.clear();
settings.setValue("LastDirectory", lastDirectory);