freebsd-ports/devel/kscope/files/patch-inline
Volker Stolz 4f4d96c15a Update to 1.1.0 (almost working PR from under my desk)
Based on PR:	ports/77248
Submitted by:	maintainer
2005-03-09 17:43:37 +00:00

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);
}