summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-22 14:24:12 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-22 14:24:12 -0500
commit6d1350796cd43ee280332feae12fcfabd088cd3c (patch)
tree7b299c58b2b6eb5b9b5387bc1231d186fc347513 /src
parent74c611d5eec6fce9de069ff801cd0dd3a266d7f9 (diff)
downloadkvpnc-6d1350796cd43ee280332feae12fcfabd088cd3c.tar.gz
kvpnc-6d1350796cd43ee280332feae12fcfabd088cd3c.zip
Fix exec icon location and bring it into XDG compliancer14.0.0
Diffstat (limited to 'src')
-rw-r--r--src/preferencesdialog.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/preferencesdialog.cpp b/src/preferencesdialog.cpp
index 69fcce2..d3bb53e 100644
--- a/src/preferencesdialog.cpp
+++ b/src/preferencesdialog.cpp
@@ -1499,7 +1499,7 @@ void PreferencesDialog::setupGui()
path.clear();
path << i18n( "Profile" ) << i18n( "Command Execution" ) << i18n( "Before Connect" );
- ProfileCmdExecBeforeConnectOptionsFrame = addPage( path, i18n( "Before Connect" ), BarIcon( "exec", TDEIcon::SizeSmall ) );
+ ProfileCmdExecBeforeConnectOptionsFrame = addPage( path, i18n( "Before Connect" ), BarIcon( "application-x-executable", TDEIcon::SizeSmall ) );
lo = new TQVBoxLayout( ProfileCmdExecBeforeConnectOptionsFrame );
lo->setSpacing( KDialog::spacingHint() );
@@ -1519,7 +1519,7 @@ void PreferencesDialog::setupGui()
path.clear();
path << i18n( "Profile" ) << i18n( "Command Execution" ) << i18n( "After Connect" );
- ProfileCmdExecAfterConnectOptionsFrame = addPage( path, i18n( "After Connect" ), BarIcon( "exec", TDEIcon::SizeSmall ) );
+ ProfileCmdExecAfterConnectOptionsFrame = addPage( path, i18n( "After Connect" ), BarIcon( "application-x-executable", TDEIcon::SizeSmall ) );
lo = new TQVBoxLayout( ProfileCmdExecAfterConnectOptionsFrame );
lo->setSpacing( KDialog::spacingHint() );
@@ -1538,7 +1538,7 @@ void PreferencesDialog::setupGui()
path.clear();
path << i18n( "Profile" ) << i18n( "Command Execution" ) << i18n( "Before Disconnect" );
- ProfileCmdExecBeforeDisconnectOptionsFrame = addPage( path, i18n( "Before Disconnect" ), BarIcon( "exec", TDEIcon::SizeSmall ) );
+ ProfileCmdExecBeforeDisconnectOptionsFrame = addPage( path, i18n( "Before Disconnect" ), BarIcon( "application-x-executable", TDEIcon::SizeSmall ) );
lo = new TQVBoxLayout( ProfileCmdExecBeforeDisconnectOptionsFrame );
lo->setSpacing( KDialog::spacingHint() );
@@ -1557,7 +1557,7 @@ void PreferencesDialog::setupGui()
path.clear();
path << i18n( "Profile" ) << i18n( "Command Execution" ) << i18n( "After Disconnect" );
- ProfileCmdExecAfterDisconnectOptionsFrame = addPage( path, i18n( "Command Execute After Disconnect" ), BarIcon( "exec", TDEIcon::SizeSmall ) );
+ ProfileCmdExecAfterDisconnectOptionsFrame = addPage( path, i18n( "Command Execute After Disconnect" ), BarIcon( "application-x-executable", TDEIcon::SizeSmall ) );
lo = new TQVBoxLayout( ProfileCmdExecAfterDisconnectOptionsFrame );
lo->setSpacing( KDialog::spacingHint() );