Fix unintended rename of stackselection

pull/1/head
Slávek Banko 12 years ago
parent 94258a77f4
commit 6da5653e01

@ -34,10 +34,10 @@ install( FILES x-tdecachegrind.desktop DESTINATION ${MIME_INSTALL_DIR}/applicati
tde_add_executable( tdecachegrind AUTOMOC tde_add_executable( tdecachegrind AUTOMOC
SOURCES SOURCES
functionselectionbase.ui stactdeselectionbase.ui partselectionbase.ui functionselectionbase.ui stackselectionbase.ui partselectionbase.ui
configdlgbase.ui loader.cpp cachegrindloader.cpp treemap.cpp pool.cpp configdlgbase.ui loader.cpp cachegrindloader.cpp treemap.cpp pool.cpp
main.cpp configuration.cpp functionselection.cpp coverage.cpp main.cpp configuration.cpp functionselection.cpp coverage.cpp
partgraph.cpp toplevel.cpp stactdeselection.cpp stackbrowser.cpp partgraph.cpp toplevel.cpp stackselection.cpp stackbrowser.cpp
subcost.cpp tracedata.cpp partselection.cpp configdlg.cpp subcost.cpp tracedata.cpp partselection.cpp configdlg.cpp
utils.cpp fixcost.cpp traceitemview.cpp instrview.cpp tabview.cpp utils.cpp fixcost.cpp traceitemview.cpp instrview.cpp tabview.cpp
sourceview.cpp callmapview.cpp callview.cpp coverageview.cpp sourceview.cpp callmapview.cpp callview.cpp coverageview.cpp

@ -2,13 +2,13 @@ bin_PROGRAMS = tdecachegrind
tdecachegrind_SOURCES = \ tdecachegrind_SOURCES = \
functionselectionbase.ui \ functionselectionbase.ui \
stactdeselectionbase.ui \ stackselectionbase.ui \
partselectionbase.ui \ partselectionbase.ui \
configdlgbase.ui \ configdlgbase.ui \
loader.cpp cachegrindloader.cpp treemap.cpp pool.cpp \ loader.cpp cachegrindloader.cpp treemap.cpp pool.cpp \
main.cpp configuration.cpp \ main.cpp configuration.cpp \
functionselection.cpp coverage.cpp partgraph.cpp \ functionselection.cpp coverage.cpp partgraph.cpp \
toplevel.cpp stactdeselection.cpp stackbrowser.cpp \ toplevel.cpp stackselection.cpp stackbrowser.cpp \
subcost.cpp tracedata.cpp partselection.cpp configdlg.cpp \ subcost.cpp tracedata.cpp partselection.cpp configdlg.cpp \
utils.cpp fixcost.cpp \ utils.cpp fixcost.cpp \
traceitemview.cpp instrview.cpp tabview.cpp \ traceitemview.cpp instrview.cpp tabview.cpp \

@ -26,7 +26,7 @@
#include "configuration.h" #include "configuration.h"
#include "listutils.h" #include "listutils.h"
#include "stackitem.h" #include "stackitem.h"
#include "stactdeselection.h" #include "stackselection.h"
// StackItem // StackItem

@ -32,7 +32,7 @@
#include <kdebug.h> #include <kdebug.h>
#include "stackbrowser.h" #include "stackbrowser.h"
#include "stactdeselection.h" #include "stackselection.h"
#include "stackitem.h" #include "stackitem.h"
StackSelection::StackSelection( TQWidget* parent, const char* name) StackSelection::StackSelection( TQWidget* parent, const char* name)
@ -227,4 +227,4 @@ void StackSelection::setGroupType(TraceItem::CostType gt)
((StackItem*)item)->updateGroup(); ((StackItem*)item)->updateGroup();
} }
#include "stactdeselection.moc" #include "stackselection.moc"

@ -25,7 +25,7 @@
#ifndef STACKSELECTION_H #ifndef STACKSELECTION_H
#define STACKSELECTION_H #define STACKSELECTION_H
#include "stactdeselectionbase.h" #include "stackselectionbase.h"
#include "tracedata.h" #include "tracedata.h"
class TraceFunction; class TraceFunction;

@ -57,7 +57,7 @@
#include "toplevel.h" #include "toplevel.h"
#include "partselection.h" #include "partselection.h"
#include "functionselection.h" #include "functionselection.h"
#include "stactdeselection.h" #include "stackselection.h"
#include "stackbrowser.h" #include "stackbrowser.h"
#include "tracedata.h" #include "tracedata.h"
#include "configuration.h" #include "configuration.h"

Loading…
Cancel
Save