mirror of
https://review.haiku-os.org/haiku
synced 2025-02-12 00:28:19 +01:00
* Reworded info_prepare() for clarity. * info_get_package_version() and info_get_package_name() were returning memory from a local variable. They return an error code now, possibly from info_prepare(). installedpackages: * Simplifications and refactoring. * Improve the layout of the interface (using layout management). * Fix coding style issues. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@28145 a95241bf-73f2-0310-859d-f6bbb57e9c96
22 lines
390 B
C++
22 lines
390 B
C++
/*
|
|
* Copyright (c) 2007, Haiku, Inc.
|
|
* Distributed under the terms of the MIT license.
|
|
*
|
|
* Author:
|
|
* Łukasz 'Sil2100' Zemczak <sil2100@vexillium.org>
|
|
*/
|
|
#ifndef UNINSTALLWINDOW_H
|
|
#define UNINSTALLWINDOW_H
|
|
|
|
#include "UninstallView.h"
|
|
#include <Window.h>
|
|
#include <Entry.h>
|
|
|
|
|
|
class UninstallWindow : public BWindow {
|
|
public:
|
|
UninstallWindow();
|
|
};
|
|
|
|
#endif // UNINSTALLWINDOW_H
|