svn path=/branches/kpdf_experiments/kdegraphics/kpdf/; revision=371428
This commit is contained in:
Enrico Ros 2004-12-17 17:10:47 +00:00
parent eed32c7654
commit 58797ffe73
2 changed files with 1 additions and 1 deletions

View file

@ -77,6 +77,7 @@ More items (first items will enter 'In progress list' first):
-> fullscreen pdf view (presentations-like) with some gfx tools
-> incremental zoom with fast-refresh (tested but flickering!) or contour tracing
-> investigate 'Splash' lack of smoothness at low resolutions (see lines in thumbnails)
-> add search on the toc widget (a prune on type lineedit like in thumbnails widget)
Done (newest feature comes firts):
-> FIX: FixPack1 [dyn_zoom repaints, initial panel width, zoom_lineedit focus proxy, searchwidget refactor{thumbs restoring on clear, buttons size, less code}, hilight bookmarked thumbnails]

View file

@ -484,7 +484,6 @@ QString GeneratorPDF::getDocumentDate( const QString & data ) const
s += 2;
if ( sscanf( s, "%4d%2d%2d%2d%2d%2d", &year, &mon, &day, &hour, &min, &sec ) == 6 )
{
kdDebug() << s << endl;
QDate d( year, mon, day ); //CHECK: it was mon-1, Jan->0 (??)
QTime t( hour, min, sec );
if ( d.isValid() && t.isValid() )