mirror of
https://invent.kde.org/graphics/okular
synced 2024-11-05 18:34:53 +00:00
ffe8ddaf9d
for the file naming map and file versioning. Please wait until the commit storm ends to report any bug. Albert and Enrico svn path=/trunk/kdegraphics/kpdf/; revision=374920
26 lines
862 B
C++
26 lines
862 B
C++
/***************************************************************************
|
|
* Copyright (C) 2004 by Enrico Ros <eros.kde@email.it> *
|
|
* *
|
|
* This program is free software; you can redistribute it and/or modify *
|
|
* it under the terms of the GNU General Public License as published by *
|
|
* the Free Software Foundation; either version 2 of the License, or *
|
|
* (at your option) any later version. *
|
|
***************************************************************************/
|
|
|
|
// local includes
|
|
#include "link.h"
|
|
|
|
KPDFLink::~KPDFLink()
|
|
{
|
|
}
|
|
|
|
/*
|
|
void KPDFLink::copyString( char * &dest, const char * src ) const
|
|
{
|
|
if ( src )
|
|
{
|
|
dest = new char[ strlen(src) + 1 ];
|
|
strcpy( &dest[0], src );
|
|
}
|
|
}
|
|
*/
|