summaryrefslogtreecommitdiffstats
path: root/kspread/kspread_events.cpp
blob: 7026be1df5ed347494a6514796e0d6c759c64a00 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#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()
{
}