By default, Bugzilla does not search the list of RESOLVED bugs.
You can force it to do so by putting the upper-case word ALL in front of your search query, e.g.: ALL tdelibs
We recommend searching for bugs this way, as you may discover that your bug has already been resolved and fixed in a later release. View | Details | Raw Unified | Return to bug 434
Collapse All | Expand All

(-)a/src/Makefile.am (-2 / +10 lines)
Lines 33-39 bin_PROGRAMS = kscope Link Here
33
kscope_SOURCES = autocompletionlayout.ui bookmarksdlg.cpp bookmarkslayout.ui \
33
kscope_SOURCES = autocompletionlayout.ui bookmarksdlg.cpp bookmarkslayout.ui \
34
	calltreedlg.cpp calltreelayout.ui calltreemanager.cpp configfrontend.cpp \
34
	calltreedlg.cpp calltreelayout.ui calltreemanager.cpp configfrontend.cpp \
35
	cscopefrontend.cpp cscopemsgdlg.cpp cscopemsglayout.ui ctagsfrontend.cpp ctagslist.cpp \
35
	cscopefrontend.cpp cscopemsgdlg.cpp cscopemsglayout.ui ctagsfrontend.cpp ctagslist.cpp \
36
	dirscanner.cpp dotfrontend.cpp dotparse.ypp dotscan.lpp editormanager.cpp \
36
	dirscanner.cpp dotfrontend.cpp dotparse.cpp dotscan.lpp editormanager.cpp \
37
	editorpage.cpp editortabs.cpp encoder.cpp filelist.cpp fileview.cpp fileviewlayout.ui \
37
	editorpage.cpp editortabs.cpp encoder.cpp filelist.cpp fileview.cpp fileviewlayout.ui \
38
	frontend.cpp graphedge.cpp graphnode.cpp graphprefdlg.cpp graphpreflayout.ui \
38
	frontend.cpp graphedge.cpp graphnode.cpp graphprefdlg.cpp graphpreflayout.ui \
39
	graphwidget.cpp historypage.cpp historyview.cpp kscope.cpp kscopeactions.cpp \
39
	graphwidget.cpp historypage.cpp historyview.cpp kscope.cpp kscopeactions.cpp \
Lines 64-68 pics_DATA = file_ro.png file_rw.png file_save.png query_locked.png \ Link Here
64
			query_unlocked.png tab_list.png call_graph.png called_tree.png calling_tree.png \
64
			query_unlocked.png tab_list.png call_graph.png called_tree.png calling_tree.png \
65
			bookmark.png
65
			bookmark.png
66
66
67
BUILT_SOURCES = dotparse.h
67
# automake <=1.11 and automake >=1.12 have different conventions for naming C++ header files
68
# made by yacc.  To work with both, we write our own rule rather than using automake's.
69
# When (if) we require automake >=1.12 in configure.ac, this can be removed, and we can use
70
# the automake rule.
71
dotparse.cpp dotparse.hpp: dotparse.ypp
72
	$(AM_V_GEN) $(YACC) -v --output dotparse.cpp --defines=dotparse.hpp $<
73
74
BUILT_SOURCES = dotparse.hpp
75
DISTCLEANFILES = dotparse.cpp
68
AM_YFLAGS = -d
76
AM_YFLAGS = -d
(-)a/src/dotscan.lpp (-1 / +1 lines)
Lines 2-8 Link Here
2
2
3
%{
3
%{
4
#include <qstring.h>
4
#include <qstring.h>
5
#include "dotparse.h"
5
#include "dotparse.hpp"
6
%}
6
%}
7
7
8
%option noyywrap
8
%option noyywrap

Return to bug 434