diff options
author | Darrell Anderson <humanreadable@yahoo.com> | 2012-06-08 15:46:01 -0500 |
---|---|---|
committer | Darrell Anderson <humanreadable@yahoo.com> | 2012-06-08 15:46:01 -0500 |
commit | 94f3dbe7c5a7dc282c22d347d91e4851cabe77d8 (patch) | |
tree | 4c2b211ee14b20c0c30e0d80cbd813fb40c8f240 /konqueror/konq_guiclients.cc | |
parent | 5c3cd105bf9a3f6a1089e18e5edbe2b4ebff68a1 (diff) | |
download | tdebase-94f3dbe7c5a7dc282c22d347d91e4851cabe77d8.tar.gz tdebase-94f3dbe7c5a7dc282c22d347d91e4851cabe77d8.zip |
Update XDG information in support of bug report 892.
Diffstat (limited to 'konqueror/konq_guiclients.cc')
-rw-r--r-- | konqueror/konq_guiclients.cc | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/konqueror/konq_guiclients.cc b/konqueror/konq_guiclients.cc index dacb3e1fa..782d55e06 100644 --- a/konqueror/konq_guiclients.cc +++ b/konqueror/konq_guiclients.cc @@ -170,8 +170,8 @@ ToggleViewGUIClient::ToggleViewGUIClient( KonqMainWindow *mainWindow ) KTrader::OfferList::Iterator it = offers.begin(); while ( it != offers.end() ) { - TQVariant prop = (*it)->property( "X-KDE-BrowserView-Toggable" ); - TQVariant orientation = (*it)->property( "X-KDE-BrowserView-ToggableView-Orientation" ); + TQVariant prop = (*it)->property( "X-TDE-BrowserView-Toggable" ); + TQVariant orientation = (*it)->property( "X-TDE-BrowserView-ToggableView-Orientation" ); if ( !prop.isValid() || !prop.toBool() || !orientation.isValid() || orientation.toString().isEmpty() ) @@ -207,7 +207,7 @@ ToggleViewGUIClient::ToggleViewGUIClient( KonqMainWindow *mainWindow ) m_actions.insert( name, action ); - TQVariant orientation = (*cIt)->property( "X-KDE-BrowserView-ToggableView-Orientation" ); + TQVariant orientation = (*cIt)->property( "X-TDE-BrowserView-ToggableView-Orientation" ); bool horizontal = orientation.toString().lower() == "horizontal"; m_mapOrientation.insert( name, horizontal ); } @@ -332,9 +332,9 @@ void ToggleViewGUIClient::slotViewAdded( KonqView *view ) // KonqView::isToggleView() is not set yet.. so just check for the orientation #if 0 - TQVariant vert = view->service()->property( "X-KDE-BrowserView-ToggableView-Orientation"); + TQVariant vert = view->service()->property( "X-TDE-BrowserView-ToggableView-Orientation"); bool vertical = vert.toString().lower() == "vertical"; - TQVariant nohead = view->service()->property( "X-KDE-BrowserView-ToggableView-NoHeader"); + TQVariant nohead = view->service()->property( "X-TDE-BrowserView-ToggableView-NoHeader"); bool noheader = nohead.isValid() ? nohead.toBool() : false; // if it is a vertical toggle part, turn on the header. // this works even when konq loads the view from a profile. |