Skip to content
This repository has been archived by the owner on Dec 17, 2017. It is now read-only.

Commit

Permalink
Fix various typos
Browse files Browse the repository at this point in the history
Volume plugin's setting values' case was inconsistent.
  • Loading branch information
amoskvin committed Oct 8, 2012
1 parent bec626a commit c94bb74
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions distr/deb/debian/control
Expand Up @@ -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
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion razorqt-panel/plugin-volume/razorvolumeconfiguration.cpp
Expand Up @@ -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);
Expand Down
8 changes: 4 additions & 4 deletions razorqt-power/src/main.cpp
Expand Up @@ -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;

}

Expand Down

0 comments on commit c94bb74

Please sign in to comment.