diff --git a/distr/deb/debian/control b/distr/deb/debian/control index a5d16ad6..34b40512 100644 --- a/distr/deb/debian/control +++ b/distr/deb/debian/control @@ -310,7 +310,7 @@ Description: Razor-qt openssh ask password interface This application relies on desktop environment integration and works depending on it, for that please read docs. . - This package is part of the Razor-Qt. + This package is part of the Razor-qt. %if POLKIT yes Package: razorqt-policykit-agent @@ -323,7 +323,7 @@ Description: lightweight PolicyKit agent/user interface for the usage of Razor-qt desktop or any other desktop. . It was written for Razor-qt DE but it can be used standalone as well. - Desktop Independent polkit component from Razor-Qt desktop. + Desktop Independent polkit component from Razor-qt desktop. . This package is part of the Razor-qt. %endif diff --git a/razorqt-panel/plugin-volume/razorvolumeconfiguration.cpp b/razorqt-panel/plugin-volume/razorvolumeconfiguration.cpp index 26d0bef4..c5af75a6 100644 --- a/razorqt-panel/plugin-volume/razorvolumeconfiguration.cpp +++ b/razorqt-panel/plugin-volume/razorvolumeconfiguration.cpp @@ -121,7 +121,7 @@ void RazorVolumeConfiguration::ignoreMaxVolumeCheckBoxChanged(bool state) void RazorVolumeConfiguration::loadSettings() { - if (settings().value(SETTINGS_AUDIO_ENGINE, SETTINGS_DEFAULT_AUDIO_ENGINE).toString() == "PulseAudio") + if (settings().value(SETTINGS_AUDIO_ENGINE, SETTINGS_DEFAULT_AUDIO_ENGINE).toString().toLower() == "pulseaudio") ui->pulseAudioRadioButton->setChecked(true); else ui->alsaRadioButton->setChecked(true); diff --git a/razorqt-power/src/main.cpp b/razorqt-power/src/main.cpp index 323dfd56..43c9a392 100644 --- a/razorqt-power/src/main.cpp +++ b/razorqt-power/src/main.cpp @@ -47,10 +47,10 @@ void help() out << endl; out << "Actions:" << endl; out << " logout Close the current user session." << endl; - out << " hibernate Hibernate the comuter" << endl; - out << " reboot Reboot the comuter" << endl; - out << " shutdown, halt Shutdown the comuter" << endl; - out << " suspend Suspend the comuter" << endl; + out << " hibernate Hibernate the computer" << endl; + out << " reboot Reboot the computer" << endl; + out << " shutdown, halt Shutdown the computer" << endl; + out << " suspend Suspend the computer" << endl; }