Use the correct line number in 'Part::showSourceLocation'

remotes/origin/KDE/4.8
Michel Ludwig 15 years ago
parent ab436aaaf5
commit 5db362fb26
  1. 3
      interfaces/viewerinterface.h
  2. 2
      part.cpp

@ -31,6 +31,9 @@ class OKULAR_EXPORT ViewerInterface
/**
* Show the specified source location centrally in the viewer.
*
* @param fileName source file name
* @param line in the source file, starts from 0
* @param column in the source file, starts from 0
* @param showGraphically controls whether the given source location will be
* shown graphically in the viewer (if that feature is globally activated)
*/

@ -836,7 +836,7 @@ KUrl Part::realUrl() const
void Part::showSourceLocation(const QString& fileName, int line, int column, bool showGraphically)
{
const QString u = QString( "src:%1 %2" ).arg( line ).arg( fileName );
const QString u = QString( "src:%1 %2" ).arg( line + 1 ).arg( fileName );
GotoAction action( QString(), u );
m_document->processAction( &action );
if( showGraphically )

Loading…
Cancel
Save