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
15 years ago
|
#include "kspread_events.h"
|
||
|
|
||
|
// ----------------------------------------------------
|
||
|
|
||
|
using namespace KSpread;
|
||
|
|
||
|
const char *SelectionChanged::s_strSelectionChanged = "KSpread/View/SelectionChanged";
|
||
|
|
||
14 years ago
|
SelectionChanged::SelectionChanged( const Region& region, const TQString& sheet )
|
||
15 years ago
|
: KParts::Event( s_strSelectionChanged )
|
||
|
{
|
||
|
m_region = region;
|
||
|
m_sheet = sheet;
|
||
|
}
|
||
|
|
||
|
SelectionChanged::~SelectionChanged()
|
||
|
{
|
||
|
}
|
||
|
|