~ubuntu-branches/ubuntu/lucid/kde4libs/lucid-security

« back to all changes in this revision

Viewing changes to kate/script/katescriptdocument.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Alessandro Ghersi
  • Date: 2010-02-26 22:37:28 UTC
  • mfrom: (1.1.45 upstream)
  • Revision ID: james.westby@ubuntu.com-20100226223728-yvwm9o0ojbq8n3vn
Tags: 4:4.4.1-0ubuntu1
* New upstream release
  - Bump build-depends
  - Drop kubuntu_73_khtml_scroll_fix.diff fixed by upstream

Show diffs side-by-side

added added

removed removed

Lines of Context:
322
322
  return m_document->encoding();
323
323
}
324
324
 
 
325
QString KateScriptDocument::highlightingMode()
 
326
{
 
327
  return m_document->highlightingMode();
 
328
}
 
329
 
 
330
QStringList KateScriptDocument::embeddedHighlightingModes()
 
331
{
 
332
  return m_document->embeddedHighlightingModes();
 
333
}
 
334
 
 
335
QString KateScriptDocument::highlightingModeAt(const KTextEditor::Cursor& pos)
 
336
{
 
337
  return m_document->highlightingModeAt(pos);
 
338
}
 
339
 
325
340
bool KateScriptDocument::isModified()
326
341
{
327
342
  return m_document->isModified();