diff options
Diffstat (limited to 'wizard')
-rw-r--r-- | wizard/installation.cpp | 2 | ||||
-rw-r--r-- | wizard/partmansel.cpp | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/wizard/installation.cpp b/wizard/installation.cpp index c5126bf..e5ed35d 100644 --- a/wizard/installation.cpp +++ b/wizard/installation.cpp @@ -49,7 +49,7 @@ void wpInstallation::receivedCommand(QString command, QString args) else if(args == "prepare_target") { title = tr("Setting up the installation target..."); - icon = "configure"; + icon = "applications-system"; } else if(args == "prepare_partitions_for_install") { diff --git a/wizard/partmansel.cpp b/wizard/partmansel.cpp index 9c509e6..2436d8f 100644 --- a/wizard/partmansel.cpp +++ b/wizard/partmansel.cpp @@ -37,13 +37,13 @@ void wpPartManSel::receivedDataLine(QString data, QString line) { title = tr("cfdisk"); desc = tr("cfdisk is a curses-based partition editor. It is text-only (curses), but it is easy to use."); - icon = "terminal"; + icon = "utilities-terminal"; } else if(app == "fdisk") { title = tr("fdisk"); desc = tr("fdisk is a classic partition table manipulator for Linux. It has a Command Line Interface."); - icon = "terminal"; + icon = "utilities-terminal"; } else if(app == "gparted") { |