-rw-r--r-- | libkcal/vcaldrag.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libkcal/vcaldrag.cpp b/libkcal/vcaldrag.cpp index f01f332..324981e 100644 --- a/libkcal/vcaldrag.cpp +++ b/libkcal/vcaldrag.cpp @@ -13,33 +13,33 @@ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #include "vcaldrag.h" #include "vcalformat.h" using namespace KCal; VCalDrag::VCalDrag( Calendar *cal, QWidget *parent, const char *name ) - : QStoredDrag( "text/x-vCalendar", parent, name ) + : Q3StoredDrag( "text/x-vCalendar", parent, name ) { VCalFormat format; setEncodedData( format.toString( cal ).utf8() ); } bool VCalDrag::canDecode( QMimeSource *me ) { return me->provides( "text/x-vCalendar" ); } bool VCalDrag::decode( QMimeSource *de, Calendar *cal ) { bool success = false; QByteArray payload = de->encodedData( "text/x-vCalendar" ); if ( payload.size() ) { |