You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
419 B
20 lines
419 B
#include "kspread_events.h"
|
|
|
|
// ----------------------------------------------------
|
|
|
|
using namespace KSpread;
|
|
|
|
const char *SelectionChanged::s_strSelectionChanged = "KSpread/View/SelectionChanged";
|
|
|
|
SelectionChanged::SelectionChanged( const Region& region, const TQString& sheet )
|
|
: KParts::Event( s_strSelectionChanged )
|
|
{
|
|
m_region = region;
|
|
m_sheet = sheet;
|
|
}
|
|
|
|
SelectionChanged::~SelectionChanged()
|
|
{
|
|
}
|
|
|