コード例 #1
0
ファイル: document.cpp プロジェクト: JackH79/focuswriter
Document::~Document()
{
	m_scene_model->removeAllScenes();

	clearIndex();
	emit removeCacheFile(g_cache_path + m_cache_filename);
}
コード例 #2
0
ファイル: cachemanager.cpp プロジェクト: forsythrosin/Ghoul
void CacheManager::removeCacheFile(const File& file, const std::string& information) {
    removeCacheFile(file.filename(), information);
}
コード例 #3
0
ファイル: cachemanager.cpp プロジェクト: forsythrosin/Ghoul
void CacheManager::removeCacheFile(const File& file) {
	std::string lastModifiedTime = file.lastModifiedDate();
	removeCacheFile(file, lastModifiedTime);
}
コード例 #4
0
ファイル: document.cpp プロジェクト: Pedrober/focuswriter
Document::~Document()
{
    clearIndex();
    emit removeCacheFile(g_cache_path + m_cache_filename);
}