~ubuntu-branches/ubuntu/raring/kdevplatform/raring

« back to all changes in this revision

Viewing changes to shell/uicontroller.cpp

  • Committer: Package Import Robot
  • Author(s): Rohan Garg
  • Date: 2012-01-17 03:21:56 UTC
  • mfrom: (0.3.15)
  • Revision ID: package-import@ubuntu.com-20120117032156-toarhfq5ihtpvm2p
Tags: 1.2.81-0ubuntu1
* New upstream release
  - Refreshed kubuntu_01_appmenu_fix.diff
  - Bump SONAME for kdevplatform and libsublime
    + Add appropriate Breaks/Replaces
  - Refresh install files

Show diffs side-by-side

added added

removed removed

Lines of Context:
129
129
    QMap<IToolViewFactory*, Sublime::ToolDocument*> factoryDocuments;
130
130
 
131
131
    Sublime::MainWindow* activeSublimeWindow;
132
 
    QList<Sublime::MainWindow*> sublimeWindows;
133
132
    bool areasRestored;
134
133
 
135
134
    //Currently shown assistant popup.
183
182
        return;
184
183
 
185
184
    connect( QApplication::instance(),
186
 
             SIGNAL( focusChanged( QWidget*, QWidget* ) ),
187
 
            this, SLOT( widgetChanged( QWidget*, QWidget* ) ) );
 
185
             SIGNAL(focusChanged(QWidget*,QWidget*)),
 
186
            this, SLOT(widgetChanged(QWidget*,QWidget*)) );
188
187
}
189
188
 
190
189
UiController::~UiController()
543
542
    d->areasRestored = true;
544
543
}
545
544
 
546
 
void UiController::addToolViewToDockArea(const QString& name,
 
545
void UiController::addToolViewToDockArea(const QString& /*name*/,
547
546
                                         IToolViewFactory* factory,
548
547
                                         Qt::DockWidgetArea area)
549
548
{