diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-12-13 06:26:27 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-12-13 06:26:27 +0000 |
commit | 9fab5b8a216e283e563f3457315715672bc8b55a (patch) | |
tree | c1251952e4e0e28fad0bca829d49335ff15b6e98 /filesharing | |
parent | bcb704366cb5e333a626c18c308c7e0448a8e69f (diff) | |
download | tdenetwork-9fab5b8a216e283e563f3457315715672bc8b55a.tar.gz tdenetwork-9fab5b8a216e283e563f3457315715672bc8b55a.zip |
Update to Trinity 3.5.11
Will need to watch for commit warnings and rebuild test
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdenetwork@1061808 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'filesharing')
-rw-r--r-- | filesharing/advanced/kcm_sambaconf/kcmsambaconf.desktop | 2 | ||||
-rw-r--r-- | filesharing/advanced/kcm_sambaconf/sambashare.cpp | 5 | ||||
-rw-r--r-- | filesharing/simple/controlcenter.ui | 2 | ||||
-rw-r--r-- | filesharing/simple/fileshare.cpp | 1 | ||||
-rw-r--r-- | filesharing/simple/fileshare.desktop | 2 |
5 files changed, 9 insertions, 3 deletions
diff --git a/filesharing/advanced/kcm_sambaconf/kcmsambaconf.desktop b/filesharing/advanced/kcm_sambaconf/kcmsambaconf.desktop index f180d216..385a8636 100644 --- a/filesharing/advanced/kcm_sambaconf/kcmsambaconf.desktop +++ b/filesharing/advanced/kcm_sambaconf/kcmsambaconf.desktop @@ -11,7 +11,7 @@ X-KDE-SubstituteUID=false X-KDE-HasReadOnlyMode=true X-KDE-RootOnly=true X-KDE-ParentApp=kcontrol -Categories=Qt;KDE;X-KDE-settings-network;Settings; +Categories=Qt;KDE;X-KDE-settings-network; OnlyShowIn=KDE; Comment=A module to configure shares for Microsoft Windows diff --git a/filesharing/advanced/kcm_sambaconf/sambashare.cpp b/filesharing/advanced/kcm_sambaconf/sambashare.cpp index b30d7db7..6627d761 100644 --- a/filesharing/advanced/kcm_sambaconf/sambashare.cpp +++ b/filesharing/advanced/kcm_sambaconf/sambashare.cpp @@ -128,6 +128,11 @@ QString SambaShare::getGlobalValue(const QString & name, bool defaultValue) **/ QString SambaShare::getSynonym(const QString & name) const { + + // idmap config is an exception and shouldn't be set to lower + QString sname = name.left(12).stripWhiteSpace(); + if ( sname == "idmap config" ) return name; + QString lname = name.lower().stripWhiteSpace(); if (lname == "browsable") return "browseable"; diff --git a/filesharing/simple/controlcenter.ui b/filesharing/simple/controlcenter.ui index eea9166e..5c635392 100644 --- a/filesharing/simple/controlcenter.ui +++ b/filesharing/simple/controlcenter.ui @@ -24,7 +24,7 @@ <cstring>infoLbl</cstring> </property> <property name="margin"> - <number>11</number> + <number>5</number> </property> <property name="text"> <string>SMB and NFS servers are not installed on this machine, to enable this module the servers must be installed.</string> diff --git a/filesharing/simple/fileshare.cpp b/filesharing/simple/fileshare.cpp index a0c5bb06..a92f1f67 100644 --- a/filesharing/simple/fileshare.cpp +++ b/filesharing/simple/fileshare.cpp @@ -87,6 +87,7 @@ KFileShareConfig::KFileShareConfig(QWidget *parent, const char *name, const QStr if ( nfsExec.isEmpty() && sambaExec.isEmpty()) { + QMessageBox::critical( 0, "File Sharing", QString("SMB and NFS servers are not installed on this machine, to enable this module the servers must be installed.")); m_ccgui->shareGrp->setDisabled(true); m_ccgui->sharedFoldersGroupBox->setDisabled(true); } diff --git a/filesharing/simple/fileshare.desktop b/filesharing/simple/fileshare.desktop index 6ed8dd8b..95913427 100644 --- a/filesharing/simple/fileshare.desktop +++ b/filesharing/simple/fileshare.desktop @@ -166,4 +166,4 @@ Keywords[tr]=Paylaş Keywords[uk]=Спільний ресурс Keywords[zh_CN]=Share,共享 -Categories=Qt;KDE;X-KDE-settings-network;Settings; +Categories=Qt;KDE;X-KDE-settings-network; |