blob: 797573cb80302c8a055c79adb70528922d776832 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
--- src/kscope.h.orig Thu Aug 3 14:13:54 2006
+++ src/kscope.h Wed Aug 9 14:22:09 2006
@@ -160,7 +160,7 @@
bool getSymbol(uint&, QString&, bool bPrompt = true);
EditorPage* addEditor(const QString&s);
EditorPage* createEditorPage();
- inline bool isAutoRebuildEnabled();
+ bool isAutoRebuildEnabled();
void loadOpenFiles();
void toggleQueryWindow(bool);
--- src/kscope.cpp.orig Wed Aug 9 08:27:55 2006
+++ src/kscope.cpp Wed Aug 9 14:22:09 2006
@@ -1215,7 +1215,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);
}
|