Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: remove invalid url #341

Merged
merged 1 commit into from
Dec 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/src/circlepushbutton.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ void circlePushButton::mousePressEvent(QMouseEvent *event)

void circlePushButton::mouseMoveEvent(QMouseEvent *event)
{
//解决bug 在按钮中可拖动相机界面,https://pms.uniontech.com/zentao/bug-view-100647.html
//解决bug 在按钮中可拖动相机界面,bug 100647
Q_UNUSED(event);
return;
}
Expand Down
2 changes: 1 addition & 1 deletion src/src/filterpreviewbutton.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ void filterPreviewButton::mousePressEvent(QMouseEvent *event)

void filterPreviewButton::mouseMoveEvent(QMouseEvent *event)
{
//解决bug 在按钮中可拖动相机界面,https://pms.uniontech.com/zentao/bug-view-100647.html
//解决bug 在按钮中可拖动相机界面,bug 100647
Q_UNUSED(event);
return;
}
Expand Down
2 changes: 1 addition & 1 deletion src/src/imageitem.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ void ImageItem::mousePressEvent(QMouseEvent *event)

void ImageItem::mouseMoveEvent(QMouseEvent *event)
{
//解决bug 在缩略图中可拖动相机界面,https://pms.uniontech.com/zentao/bug-view-100647.html
//解决bug 在缩略图中可拖动相机界面,bug 100647
Q_UNUSED(event);
return;
}
Expand Down
2 changes: 1 addition & 1 deletion src/src/photorecordbtn.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -130,9 +130,9 @@
update();
}

void photoRecordBtn::mouseMoveEvent(QMouseEvent *event)

Check warning on line 133 in src/src/photorecordbtn.cpp

View workflow job for this annotation

GitHub Actions / cppcheck

The function 'mouseMoveEvent' is never used.
{
//解决bug 在按钮中可拖动相机界面,https://pms.uniontech.com/zentao/bug-view-100647.html
//解决bug 在按钮中可拖动相机界面,bug 100647
Q_UNUSED(event);
return;
}
Expand Down
2 changes: 1 addition & 1 deletion src/src/videowidget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
static PRIVIEW_ENUM_STATE g_Enum_Camera_State = PICTRUE;

// 重写QGraphicsView类,在子类中,直接将鼠标事件路由到QWidget,这样QGraphicsScene不会接收和处理鼠标事件
// bug链接 https://pms.uniontech.com/zentao/bug-view-100791.html
// bug链接 bug 100791
QGraphicsViewEx::QGraphicsViewEx(QWidget *parent)
: QGraphicsView(parent)
{
Expand Down
Loading