~ubuntu-branches/ubuntu/gutsy/kde4libs/gutsy

« back to all changes in this revision

Viewing changes to kio/kio/sessiondata.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Riddell
  • Date: 2007-02-21 11:00:12 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20070221110012-6kw8khr9knv6lmg1
Tags: 3.80.3-0ubuntu1
New upstream unstable release

Show diffs side-by-side

added added

removed removed

Lines of Context:
174
174
  if ( !d  || d->persist )
175
175
    return;
176
176
 
 
177
#ifdef Q_OS_UNIX
177
178
  bool ok;
178
 
  int count;
179
179
  QByteArray ref_key = d->key + "-refcount";
180
 
 
181
 
#ifdef Q_OS_UNIX
182
 
  count = m_kdesuClient->getVar( ref_key ).toInt( &ok );
 
180
  int count = m_kdesuClient->getVar( ref_key ).toInt( &ok );
183
181
  if ( ok )
184
182
  {
185
183
    if ( count > 1 )
292
290
    KProtocolManager::reparseConfiguration();
293
291
}
294
292
 
295
 
void SessionData::virtual_hook( int, void* )
296
 
{ /*BASE::virtual_hook( id, data );*/ }
297
 
 
298
293
}