for now, don't create xml storage files for non-local urls, as the local name will always change

svn path=/trunk/KDE/kdegraphics/okular/; revision=755447
This commit is contained in:
Pino Toscano 2008-01-01 16:22:29 +00:00
parent 6848a3ec6a
commit 02dde1035c

View file

@ -486,7 +486,7 @@ ConfigInterface* DocumentPrivate::generatorConfig( GeneratorInfo& info )
void DocumentPrivate::saveDocumentInfo() const
{
if ( m_docFileName.isEmpty() )
if ( m_xmlFileName.isEmpty() )
return;
QFile infoFile( m_xmlFileName );
@ -1089,6 +1089,8 @@ bool Document::openDocument( const QString & docFile, const KUrl& url, const KMi
// determine the related "xml document-info" filename
d->m_url = url;
d->m_docFileName = docFile;
if ( url.isLocalFile() )
{
QString fn = docFile.contains('/') ? docFile.section('/', -1, -1) : docFile;
document_size = fileReadTest.size();
fn = QString::number( document_size ) + '.' + fn + ".xml";
@ -1107,6 +1109,7 @@ bool Document::openDocument( const QString & docFile, const KUrl& url, const KMi
}
}
d->m_xmlFileName = newokularfile;
}
}
else
{