diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-25 00:06:03 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-25 00:06:03 -0600 |
commit | 3b974934d9123068efc34d59b335263b91590a06 (patch) | |
tree | a81997aeae8b109f8280ce271e09b46fc9d5ea55 /src/app/historyAction.cpp | |
parent | 40a94e488f56f1e783636b6414da7a3c4cadc86e (diff) | |
download | filelight-3b974934d9123068efc34d59b335263b91590a06.tar.gz filelight-3b974934d9123068efc34d59b335263b91590a06.zip |
Rename KCModule, KConfig, KIO, KServer, and KSocket to avoid conflicts with KDE4
Diffstat (limited to 'src/app/historyAction.cpp')
-rw-r--r-- | src/app/historyAction.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/app/historyAction.cpp b/src/app/historyAction.cpp index 9d27ef1..f0864a9 100644 --- a/src/app/historyAction.cpp +++ b/src/app/historyAction.cpp @@ -79,14 +79,14 @@ HistoryCollection::pop() //slot } void -HistoryCollection::save( KConfig *config ) +HistoryCollection::save( TDEConfig *config ) { config->writePathEntry( "backHistory", m_b->m_list ); config->writePathEntry( "forwardHistory", m_f->m_list ); } void -HistoryCollection::restore( KConfig *config ) +HistoryCollection::restore( TDEConfig *config ) { m_b->m_list = config->readPathListEntry( "backHistory" ); m_f->m_list = config->readPathListEntry( "forwardHistory" ); |