4f4d96c15a
Based on PR: ports/77248 Submitted by: maintainer
22 lines
703 B
Text
22 lines
703 B
Text
--- src/kscope.h.orig Wed Mar 9 18:30:41 2005
|
|
+++ src/kscope.h Wed Mar 9 18:30:52 2005
|
|
@@ -145,7 +145,7 @@
|
|
bool getSymbol(uint&, QString&, bool bPrompt = true);
|
|
EditorPage* addEditor(const QString&s);
|
|
EditorPage* createEditorPage();
|
|
- inline bool isAutoRebuildEnabled();
|
|
+ bool isAutoRebuildEnabled();
|
|
|
|
private slots:
|
|
// Menu actions
|
|
--- src/kscope.cpp.orig Wed Mar 9 18:30:35 2005
|
|
+++ src/kscope.cpp Wed Mar 9 18:31:08 2005
|
|
@@ -1126,7 +1126,7 @@
|
|
* @return true if database auto-rebuild is enabled for the current project,
|
|
* false otherwise
|
|
*/
|
|
-inline bool KScope::isAutoRebuildEnabled()
|
|
+bool KScope::isAutoRebuildEnabled()
|
|
{
|
|
return (m_pProjMgr->getAutoRebuildTime() >= 0);
|
|
}
|