~ubuntu-branches/ubuntu/vivid/kdepim/vivid

« back to all changes in this revision

Viewing changes to blogilo/src/composer/texteditor.cpp

  • Committer: Package Import Robot
  • Author(s): Rohan Garg
  • Date: 2013-02-06 11:49:08 UTC
  • mfrom: (0.2.38)
  • Revision ID: package-import@ubuntu.com-20130206114908-eb7adh9xp54jk7gi
Tags: 4:4.10.0a-0ubuntu1
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
216
216
TextEditor::TextEditor ( QWidget *parent )
217
217
        : QWidget ( parent ), webView(new WebView(this))
218
218
{
219
 
    objectsAreModified = false;
220
219
    readOnly = false;
221
220
    QFile file ( KStandardDirs::locate ( "data", "blogilo/TextEditorInitialHtml" ) );
222
221
    kDebug() <<file.fileName();
266
265
    }
267
266
}
268
267
 
269
 
void TextEditor::anObjectIsModifiedSlot()
270
 
{
271
 
    objectsAreModified = true;
272
 
}
273
 
 
274
268
void TextEditor::createLayout()
275
269
{
276
270
    barVisual = new KToolBar ( this );