blob: fa02a412c51dc091d6b8f02c2a3f450562d2f598 (
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 QString& sheet )
: KParts::Event( s_strSelectionChanged )
{
m_region = region;
m_sheet = sheet;
}
SelectionChanged::~SelectionChanged()
{
}
|