diff --git a/uninstaller/mainwindow.cpp b/uninstaller/mainwindow.cpp index 796b244..65a195c 100644 --- a/uninstaller/mainwindow.cpp +++ b/uninstaller/mainwindow.cpp @@ -600,7 +600,7 @@ bool MainWindow::removeIcon() switch ( this->OS ) { case 1: // unix - p = "/usr/share/icons/logdoctor.svg"; + p = "/usr/share/LogDoctor/LogDoctor.svg"; if ( std::filesystem::exists( p ) ) { // !!! remove later // menu entry exists, plan remove it remove = true; diff --git a/uninstaller/mainwindow.h b/uninstaller/mainwindow.h index 6c63598..5cd618b 100644 --- a/uninstaller/mainwindow.h +++ b/uninstaller/mainwindow.h @@ -75,7 +75,7 @@ private: const unsigned int OS = 1; const std::filesystem::path exec_path = "/usr/bin"; const std::filesystem::path conf_path = home_path + "/.config/LogDoctor"; - const std::filesystem::path data_path = home_path + "/.local/share/LogDoctor"; + const std::filesystem::path data_path = "/usr/share/LogDoctor"; #else #error "System not supported" #endif