mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Still behaves weirdly when panning the chart. No support for moving the ToolTipItem. Doesn't add information on bookmarks under the mouse cursor. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
14 lines
242 B
C++
14 lines
242 B
C++
// SPDX-License-Identifier: GPL-2.0
|
|
// Dummy object for profile-module related translations
|
|
|
|
#ifndef PROFILE_TRANSLATIONS_H
|
|
#define PROFILE_TRANSLATIONS_H
|
|
|
|
#include <QObject>
|
|
|
|
class ProfileTranslations : public QObject
|
|
{
|
|
Q_OBJECT
|
|
};
|
|
|
|
#endif
|