SVN commit 1189004 by mart: . and - are not permitted as table names M +3 -0 storage.cpp --- trunk/KDE/kdelibs/plasma/private/storage.cpp #1189003:1189004 @@ -168,6 +168,9 @@ } } + m_clientName = m_clientName.replace('.', "_"); + m_clientName = m_clientName.replace('-', "_"); + setName("storage"); }