~ubuntu-branches/ubuntu/raring/kdepim/raring-proposed

« back to all changes in this revision

Viewing changes to mailcommon/filter/filteractionbeep.cpp

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell
  • Date: 2012-06-07 07:56:38 UTC
  • mfrom: (0.2.27)
  • Revision ID: package-import@ubuntu.com-20120607075638-0luhdq11z7sgvs4m
Tags: 4:4.8.80-0ubuntu1
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (c) 1996-1998 Stefan Taferner <taferner@kde.org>
 
3
 *
 
4
 * This program is free software; you can redistribute it and/or modify
 
5
 * it under the terms of the GNU General Public License as published by
 
6
 * the Free Software Foundation; either version 2 of the License, or
 
7
 * (at your option) any later version.
 
8
 *
 
9
 * This program is distributed in the hope that it will be useful,
 
10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
12
 * GNU General Public License for more details.
 
13
 *
 
14
 * You should have received a copy of the GNU General Public License
 
15
 * along with this program; if not, write to the Free Software
 
16
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 
17
 *
 
18
 */
 
19
 
 
20
#include "filteractionbeep.h"
 
21
 
 
22
#include <KDE/KLocale>
 
23
#include <KDE/KNotification>
 
24
 
 
25
using namespace MailCommon;
 
26
 
 
27
FilterActionBeep::FilterActionBeep( QObject *parent )
 
28
  : FilterActionWithNone( "beep", i18n( "Beep" ), parent )
 
29
{
 
30
}
 
31
 
 
32
FilterAction::ReturnCode FilterActionBeep::process( ItemContext &/*context*/ ) const
 
33
{
 
34
  KNotification::beep();
 
35
  return GoOn;
 
36
}
 
37
 
 
38
FilterAction* FilterActionBeep::newAction()
 
39
{
 
40
  return new FilterActionBeep;
 
41
}