~ubuntu-branches/ubuntu/trusty/yakuake/trusty

« back to all changes in this revision

Viewing changes to app/application.cpp

  • Committer: Package Import Robot
  • Author(s): Ana Beatriz Guerrero Lopez
  • Date: 2013-07-15 00:14:52 UTC
  • mfrom: (0.1.13)
  • Revision ID: package-import@ubuntu.com-20130715001452-v3p5w7tjds235znn
Tags: 2.9.9-1
* New upstream release:
 - Fixes: Yakuake does not show shell tabs when opening on a smaller screen
   using TwinView. (Closes: #523526)
* Update minimum dependencies to KDE >= 4.7.1
* Update to Standards-Version 3.9.4, no changes required.

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
#include "mainwindow.h"
24
24
 
25
25
 
26
 
bool Application::m_isKDE46OrHigher = false;
27
 
 
28
26
Application::Application() : KUniqueApplication()
29
27
{
30
28
    m_mainWindow = 0;
31
 
 
32
 
    if (KDE::version() >= KDE_MAKE_VERSION(4, 6, 0))
33
 
        m_isKDE46OrHigher = true;
34
29
}
35
30
 
36
31
Application::~Application()